-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "sparrow",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --fix",
"test": "jest --coverage",
"test-live": "cross-env DEBUG_MODE=1 jest --coverage",
"build": "rimraf -rf ./dist ./lib ./esm && rollup --config",
"prepare": "husky install",
"ci": "run-s lint test build"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manyyuri/sparrow.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/manyyuri/sparrow/issues"
},
"homepage": "https://github.com/manyyuri/sparrow#readme",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/node": "^20.12.8",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^7.0.0",
"jest": "^26.0.1",
"jest-electron": "^0.1.12",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.58.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4"
},
"dependencies": {
"lint-staged": "^11.2.6"
}
}