-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "branchsite",
"version": "0.0.0-development",
"author": {
"name": "Enrique Caballero",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/enriquecaballero/branchsite.git"
},
"description": "",
"license": "MIT",
"bin": {
"bs": "lib/index.js"
},
"scripts": {
"build": "NODE_ENV=production webpack",
"pretty": "prettier-eslint --write \"src/**/*.js\"",
"cz": "git-cz",
"commitmsg": "validate-commit-msg",
"precommit": "lint-staged",
"test": "jest",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"files": [
"lib"
],
"engines": {
"node": ">=4"
},
"dependencies": {
"caporal": "^0.7.0",
"execa": "^0.9.0",
"has-yarn": "^1.0.0",
"listr": "^0.12.0",
"rxjs": "^5.4.0",
"split": "^1.0.0",
"stream-to-observable": "^0.2.0"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^22.2.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"empty": "^0.10.1",
"eslint": "^4.1.0",
"eslint-config-prettier": "^2.1.0",
"husky": "^0.14.0",
"jest": "^22.1.4",
"lint-staged": "^4.0.0",
"prettier-eslint-cli": "^4.0.1",
"semantic-release": "^7.0.2",
"string-argv": "^0.0.2",
"uglify-js": "^3.0.19",
"uglifyjs-webpack-plugin": "^0.4.6",
"validate-commit-msg": "^2.12.1",
"webpack": "^3.0.0"
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"validate-commit-msg": {
"helpMessage": "\nPlease use `yarn cz` to commit your changes"
}
}
}