-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.47 KB
/
package.json
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
57
58
59
{
"name": "cat-web-storage",
"author": "Lin.xs",
"version": "0.2.1",
"license": "MIT",
"description": "web storage",
"keywords": [
"web",
"storage"
],
"scripts": {
"build": "node build/index.js",
"tbuild": "node tbuild/build.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"main": "dist/cat-web-storage.common.js",
"module": "dist/cat-web-storage.esm.js",
"unpkg": "cat-web-storage.js",
"jsdelivr": "cat-web-storage.js",
"typings": "types/index.d.ts",
"files": [
"src/*.js",
"dist/*.js",
"types/*.d.ts"
],
"homepage": "https://github.com/linxsbox/cat-web-storage#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/linxsbox/cat-web-storage.git"
},
"bugs": {
"url": "https://github.com/linxsbox/cat-web-storage/issues"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.1",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"lint-staged": "^10.0.9",
"rollup": "^2.2.0",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-typescript2": "^0.26.0",
"terser": "^4.6.7",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"vue": "^2.6.11"
},
"peerDependencies": {
"vue": "^2.6.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"git add"
]
}
}