-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.54 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
60
{
"name": "pstorage",
"version": "1.0.1",
"description": "A common storage mannager",
"main": "lib/index.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"watch": "rollup -c -w",
"format": "eslint src/*.js --fix"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"babel-eslint": "^10.0.1",
"core-js": "^3.1.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.1",
"prettier-eslint-cli": "^4.7.1",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-uglify": "^6.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GreenPomelo/pstorage.git"
},
"keywords": [
"storage"
],
"author": "SoloJiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/GreenPomelo/pstorage/issues"
},
"homepage": "https://github.com/GreenPomelo/pstorage#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}