-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "certbaker",
"version": "1.0.0",
"description": "Utility to generate openssl certificates for local development.",
"repository": {
"type": "git",
"url": "https://github.com/marcelgwerder/certbaker.git"
},
"main": "bin/certbaker.js",
"bin": {
"certbaker": "bin/certbaker.js"
},
"scripts": {
"test": "NODE_ENV=test nyc --cache --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"openssl",
"utility",
"certificates",
"ssl"
],
"author": "Marcel Gwerder <[email protected]>",
"license": "MIT",
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.13.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"sinon": "^4.1.3"
},
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.12.2",
"dedent": "^0.7.0",
"util.promisify": "^1.0.0"
},
"engines": {
"node": ">=6"
}
}