-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
64
65
{
"name": "chores",
"version": "0.0.0-development",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/haedaal/chores.git"
},
"main": "src/bin/chores.js",
"bin": {
"chores": "./src/bin/chores.js"
},
"scripts": {
"install": "node src/guide.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf dist",
"build": "gulp",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"precommit": "lint-staged",
"prettier": "prettier --write './**/*.{js,json,css,scss,md}'",
"release":
"git push && git fetch && npm run build && cd dist && npm run semantic-release-local",
"semantic-release-local": "semantic-release --no-ci",
"semantic-release": "semantic-release"
},
"lint-staged": {
"**/*.{js,json,css,scss,md}": ["prettier --write", "git add"]
},
"author": "Minjae Kim",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^1.1.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"gulp": "^3.9.1",
"husky": "^0.14.3",
"lint-staged": "^6.1.1",
"prettier": "^1.12.0",
"rimraf": "^2.6.2",
"semantic-release": "^12.4.1",
"validate-commit-msg": "^2.14.0"
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm"
],
"publish": ["@semantic-release/changelog", "@semantic-release/github", "@semantic-release/npm"]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"chalk": "^2.3.1",
"inquirer": "^5.1.0",
"ora": "^2.0.0"
}
}