-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 893 Bytes
/
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
{
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lint-staged": "^12.4.1",
"mrm": "2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.73.0"
},
"scripts": {
"lint": "eslint src __tests__ --fix",
"build": "rimraf -rf ./dist ./lib ./esm && rollup --config",
"prepare": "husky install",
"test": "jest",
"ci": "run-s lint test build"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}