-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "sparrow",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"prepare": "husky || true",
"commit": "git-cz",
"lint": "eslint -fix",
"build": "rimraf -rf ./dist ./lib ./esm && rollup --config"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.14.0",
"commitizen": "^4.3.1",
"commitlint": "^19.5.0",
"commitlint-config-cz": "^0.13.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.2.1",
"electron": "^33.1.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"husky": "^9.1.6",
"jest": "24",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^2.79.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}