-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
58 lines (58 loc) · 1.71 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
52
53
54
55
56
57
58
{
"name": "livecss",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"package": "electron-packager ./ /LiveCSS --win32metadata.requested-execution-level=requireAdministrator",
"build": "node build.js",
"prettier": "./node_modules/.bin/prettier --write .",
"lint:js": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint . --fix"
},
"author": "verion",
"license": "ISC",
"dependencies": {
"chokidar": "^3.4.0",
"css-to-object": "^1.1.0",
"electron": "^9.0.5",
"ncp": "^2.0.0",
"open-file-explorer": "^1.0.2",
"rimraf": "^3.0.2"
},
"devDependencies": {
"cz-conventional-changelog": "^3.2.0",
"electron-packager": "^15.0.0",
"electron-wix-msi": "^2.2.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"prettier-config-standard": "^1.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css}": [
"npm run prettier",
"git add -A"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}