-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "sparrow",
"version": "1.0.0",
"description": "小型图表库",
"main": "index.js",
"author": "Buygig",
"license": "MIT",
"scripts": {
"lint": "eslint --fix",
"test": "jest --coverage",
"test-live": "cross-env DEBUG_MODE=1 jest --coverage",
"build": "rimraf -rf ./dist ./lib ./esm && rollup --config",
"ci": "run-s lint test build",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.0",
"jest": "^24.0.0",
"jest-electron": "^0.1.12",
"lint-staged": "^13.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.75.6",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"keywords": [],
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"engines": {
"node": ">=16.0.0"
}
}