-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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": "dragon",
"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",
"ci": "run-s lint test build",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"cross-env": "^7.0.3",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.0",
"jest": "^26.0.1",
"jest-electron": "^0.1.12",
"lint-staged": "^13.2.2",
"mrm": "^2.6.2",
"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"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}