-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.14 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
{
"author": "Andris Reinman <[email protected]>",
"contributors": [
{
"name": "Josef Fröhle",
"email": "[email protected]",
"url": "https://www.josef-froehle.de/"
}
],
"license": "MIT",
"name": "pem",
"description": "Create private keys and certificates with node.js and io.js",
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "https://github.com/Dexus/pem.git"
},
"main": "lib/pem",
"scripts": {
"aftersuccess": "bin/aftersuccess.sh",
"documentation": "npm run docco --silent && npm run jsdoc --silent",
"docco": "docco -l parallel -o docs/docco lib/helper.js lib/openssl.js lib/pem.js",
"jsdoc": "jsdoc -c jsdoc.json",
"changelog": "auto-changelog --output HISTORY.md",
"coverage": "cross-env NODE_ENV=development nyc ./node_modules/.bin/_mocha --opts mocha.opts $(find . -type f -name '*.spec.js' ! -path './nyc_output/*' ! -path './coverage/*' ! -path './node_modules/*')",
"semantic-release": "semantic-release",
"lint": "eslint --fix --config=./.eslintrc.js *.js *.md *.json lib/*.js test/*.js test/*.spec.js",
"test": "npm run lint --silent && npm run coverage --silent"
},
"nyc": {
"reporter": [
"html",
"text"
],
"exclude": [
"**/*.spec.js",
"test/pem.helper.js"
]
},
"dependencies": {
"safe-buffer": "^5.1.1",
"md5": "^2.2.1",
"os-tmpdir": "^1.0.1",
"which": "^1.2.4"
},
"devDependencies": {
"auto-changelog": "^1.0.0",
"chai": "^4.1.2",
"cross-env": "^5.1.4",
"dirty-chai": "^2.0.1",
"docco": "^0.8.0",
"@deineagenturug/docdash": "^0.4.1",
"eslint": "^4.8.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-markdown": "^1.0.0-beta.7",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jsdoc": "^3.5.5",
"mocha": "^5.0.5",
"nyc": "^11.2.1",
"semantic-release": "^15.1.5",
"travis-deploy-once": "^5.0.0"
},
"engines": {
"node": ">=4.0.0"
},
"release": {
"debug": false
}
}