-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.79 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@vbots/session-storage",
"version": "1.1.0",
"description": "SessionStorage with lowdb Add-on for Session vk-io library",
"main": "lib/index",
"types": "lib/index.d.ts",
"author": "xTCry [Vladislav Kh] (https://github.com/xTCry/)",
"license": "MIT",
"scripts": {
"up": "npm version patch",
"pub_": "yarn run prepare && npm publish --access public",
"prepare": "yarn run rollup:build && yarn run test",
"build": "yarn run rollup:build",
"watch": "yarn run rollup:build -w",
"rollup:build": "rollup -c rollup.config.ts",
"test": "yarn run test:jest",
"test:jest": "jest --config jest.config.json --no-cache"
},
"peerDependencies": {
"@vk-io/session": ">=0.0.0-alpha.3 <=2.0.0",
"vk-io": "^4.0.0"
},
"dependencies": {
"fs-extra": "^9.0.1",
"lodash-id": "^0.14.0",
"lowdb": "^1.0.0",
"yargs": "^16.0.3"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.15",
"@types/lowdb": "^1.0.9",
"@types/node": "^14.10.1",
"@types/rollup-plugin-json": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"@vk-io/session": ">=0.0.0-alpha.3 <=2.0.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^26.6.3",
"rollup": "^2.34.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
},
"repository": "git@github.com:VBots/session-storage.git",
"bugs": {
"url": "https://github.com/VBots/session-storage/issues"
},
"homepage": "https://github.com/VBots/session-storage#readme"
}