-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.61 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.61 KB
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
{
"name": "dotdocker",
"version": "0.0.0-development",
"description": "A utility to help setup a docker development environment with host based routing",
"dependencies": {
"@babel/runtime": "^7.7.2",
"commander": "^2.20.0",
"dockerode": "^2.5.8",
"execa": "^1.0.0",
"listr": "^0.14.3",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/node": "^7.4.5",
"cod-scripts": "^3.3.0",
"markdownlint-cli": "^0.17.0",
"pkg": "^4.4.0",
"semantic-release": "^15.13.16"
},
"scripts": {
"build": "cod-scripts build -d build --copy-files && pkg --targets=node12-macos,node12-linux --out-path=dist .",
"prepack": "npm run build",
"semantic-release": "semantic-release",
"build:watch": "npm run build -- --watch",
"format": "cod-scripts format",
"lint": "cod-scripts lint",
"lint:md": "markdownlint -i node_modules -i dist .",
"lint:commit": "cod-scripts commitlint",
"validate": "cod-scripts validate"
},
"bin": {
"dotdocker": "./bin/dotdocker.js"
},
"repository": {
"type": "git",
"url": "https://github.com/aj-may/dotdocker.git"
},
"author": "A.J. May (https://github.com/aj-may)",
"license": "MIT",
"bugs": {
"url": "https://github.com/aj-may/dotdocker/issues"
},
"homepage": "https://github.com/aj-may/dotdocker#readme",
"preferGlobal": true,
"engines": {
"node": ">= 12"
},
"eslintConfig": {
"extends": [
"./node_modules/cod-scripts/eslint.js"
]
},
"husky": {
"hooks": {
"pre-commit": "cod-scripts pre-commit",
"commit-msg": "cod-scripts commitlint -E HUSKY_GIT_PARAMS"
}
}
}