-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
78 lines (78 loc) · 2.33 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
74
75
76
77
78
{
"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": "1.14.8",
"repository": {
"type": "git",
"url": "https://github.com/Dexus/pem.git"
},
"main": "./dist/index.js",
"files": [
"dist",
"lib"
],
"type": "commonjs",
"scripts": {
"documentation": "yarn run docco && yarn run jsdoc",
"docco": "docco -l parallel -o docs/docco lib/helper.js lib/openssl.js lib/pem.js",
"jsdoc": "jsdoc -c jsdoc.json",
"build": "ncc build -m -s lib/pem.js -o dist",
"changelog": "auto-changelog -p --output HISTORY.md",
"coverage": "cross-env NODE_ENV=development nyc ./node_modules/.bin/_mocha --recursive --bail --inline-diffs --reporter spec --check-leaks --use_strict $(find . -type f -name '*.spec.js' ! -path './nyc_output/*' ! -path './coverage/*' ! -path './node_modules/*')",
"lint": "eslint --fix --config=./.eslintrc.js lib/*.js *.md *.json lib/*.js test/*.js test/*.spec.js",
"test": "yarn run lint && yarn run coverage",
"test:opensslv3.0.1": "yarn run build > openssl_v3.0.1.log && yarn run test >> openssl_v3.0.1.log"
},
"nyc": {
"reporter": [
"html",
"text"
],
"exclude": [
"**/*.spec.js",
"test/pem.helper.js"
]
},
"dependencies": {
"es6-promisify": "^7.0.0",
"md5": "^2.3.0",
"os-tmpdir": "^1.0.2",
"which": "^4.0.0"
},
"devDependencies": {
"@deineagenturug/docdash": "0.4.2",
"@types/chai": "4.3.11",
"@types/dirty-chai": "2.0.4",
"@vercel/ncc": "0.38.1",
"auto-changelog": "2.4.0",
"chai": "4.4.1",
"cross-env": "7.0.3",
"dirty-chai": "2.0.1",
"docco": "0.9.1",
"eslint": "8.56.0",
"eslint-plugin-chai-friendly": "0.7.4",
"eslint-plugin-eslint-plugin": "4.4.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-markdown": "2.2.1",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "6.1.1",
"jsdoc": "3.6.11",
"marked": "4.3.0",
"mocha": "^10.2.0",
"nyc": "15.1.0"
},
"engines": {
"node": ">=14.0.0"
}
}