This repository has been archived by the owner on May 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.73 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
{
"name": "cwtools",
"version": "1.0.6",
"license": "MIT",
"description": "Tools for node development",
"author": "Simon Degrave <[email protected]>",
"repository": "github:colisweb/cwtools",
"homepage": "https://github.com/colisweb/cwtools#readme",
"bugs": "https://github.com/colisweb/cwtools/issues",
"main": "lib/index.js",
"bin": "lib/cli.js",
"files": [
"lib"
],
"keywords": [
"changelog",
"publish",
"push",
"version",
"bump",
"commit",
"colisweb"
],
"scripts": {
"lint": "cwformat",
"test": "jest",
"build": "rimraf lib && babel --out-dir lib --ignore *.test.js,__*__ src",
"release": "npm run build && ./lib/cli.js release"
},
"dependencies": {
"any-observable": "^0.2.0",
"conventional-changelog-cli": "^1.2.0",
"conventional-changelog-colisweb": "^1.0.1",
"conventional-recommended-bump": "^0.3.0",
"del": "^2.2.2",
"execa": "^0.5.0",
"listr": "^0.6.1",
"meow": "^3.7.0",
"nodent-runtime": "^3.0.1",
"pify": "^2.3.0",
"read-pkg-up": "^2.0.0",
"repo-utils": "^0.4.1",
"req-cwd": "^1.0.1",
"rxjs": "^5.0.0-rc.1",
"semver": "^5.3.0",
"split": "^1.0.0",
"stream-to-observable": "^0.2.0",
"write-pkg": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"conventional-changelog-angular": "^1.3.0",
"eslint-config-colisweb": "^1.0.1",
"execa-jest-mock": "^0.5.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"rimraf": "^2.6.1"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"eslintConfig": {
"extends": "colisweb"
}
}