-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.24 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
{
"name": "@crazyfactory/docker-project-cli",
"description": "a cli tool to reduce your docker-compose overhead",
"main": "bin/index.js",
"scripts": {
"test": "xo && ava",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"precommit": "xo",
"commitmsg": "validate-commit-msg",
"prepush": "ava"
},
"bin": {
"dopr": "./bin/index.js"
},
"keywords": [
"docker",
"docker-compose",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/crazyfactory/docker-project-cli.git"
},
"author": "Wolf T. Mathes",
"license": "MIT",
"dependencies": {
"chalk": "^2.0.1",
"commander": "^4.0.0",
"deep-assign": "^3.0.0",
"fallback-cli": "^2.0.2",
"update-notifier": "^4.0.0"
},
"devDependencies": {
"ava": "^2.3.0",
"babel-preset-env": "^1.5.2",
"husky": "^3.0.0",
"semantic-release": "^15.0.0",
"validate-commit-msg": "^2.12.2",
"xo": "^0.18.2"
},
"xo": {
"space": 4,
"rules": {
"import/no-unresolved": 0,
"operator-linebreak": 0
}
},
"ava": {
"files": [
"**/*.spec.{js,ts}"
],
"source": [
"**/*.{js,jsx,ts,tsx}",
"!**/*.spec.*"
]
},
"version": "v0.9.6"
}