-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.29 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
59
60
61
62
63
{
"name": "cakeq",
"version": "0.2.0",
"description": "some quizzes",
"main": "index.js",
"bin": {
"c": "./bin/cake-cli",
"cake-cli": "./bin/cake-cli"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"release": "standard-version",
"commit": "git-cz"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/longyiyiyu/just-fortest.git"
},
"keywords": [
"quiz"
],
"author": "long",
"license": "ISC",
"bugs": {
"url": "https://github.com/longyiyiyu/just-fortest/issues"
},
"homepage": "https://github.com/longyiyiyu/just-fortest#readme",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"commitizen": "^3.0.4",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.8.0",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"prettier": "^1.15.1",
"standard-version": "^4.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}