generated from xavierlupin/vanilla-preset-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "vanilla-preset-env",
"version": "1.0.0",
"private": true,
"description": "",
"keywords": [],
"homepage": "https://github.com/xavierlupin/vanilla-preset-env#readme",
"bugs": {
"url": "https://github.com/xavierlupin/vanilla-preset-env/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xavierlupin/vanilla-preset-env.git"
},
"license": "UNLICENSED",
"author": "Xavier Lupin <xavierlupin0418@gmail.com> (https://github.com/xavierlupin)",
"main": "index.js",
"devDependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.1",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.0",
"jest": "^28.1.0",
"lint-staged": "^13.0.0",
"prettier": "2.6.2",
"standard-version": "^9.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{html,css,js,md}": "prettier --write"
},
"scripts": {
"prepare": "husky install",
"test": "jest",
"cz": "cz",
"release": "standard-version --no-verify",
"server": "npx http-server ./docs"
}
}