-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.17 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
{
"name": "practice",
"version": "0.0.0",
"description": "for personal pratice",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maxxxz/practice.git"
},
"author": "maxizhang",
"license": "ISC",
"bugs": {
"url": "https://github.com/Maxxxz/practice/issues"
},
"homepage": "https://github.com/Maxxxz/practice#readme",
"lint-staged": {
"linters": {
"*.less": [
"stylelint --fix --syntax=less",
"git add"
],
"*.css": [
"stylelint --fix",
"git add"
],
"*.js": [
"eslint",
"git add"
]
}
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"eslint": "^5.14.1",
"ghooks": "^2.0.4",
"koa-logger": "^3.2.0",
"lint-staged": "^8.1.4",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"validate-commit-msg": "^2.14.0",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"koa-session": "^5.10.1",
"webpack": "^4.29.6"
}
}