-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.59 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
{
"name": "dockrr",
"version": "0.0.3",
"description": "An npm package for generating Dockerfile and building container image of Node.js applications",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest --coverage && coveralls < coverage/lcov.info",
"lint": "eslint src/",
"prettier-fix": "prettier --write src/",
"eslint-fix": "eslint --fix src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kenec/dockrr.git"
},
"keywords": [
"Docker",
"Container",
"Docker",
"image",
"Dockerfile"
],
"author": "Kenechukwu Nnamani",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kenec/dockrr/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js}": [
"eslint",
"git add"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*"
]
},
"homepage": "https://github.com/Kenec/dockrr#readme",
"devDependencies": {
"coveralls": "^3.0.5",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.14.2",
"husky": "^3.0.1",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1"
},
"dependencies": {
"commander": "^2.20.0"
}
}