-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.09 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
{
"name": "mr-cert",
"version": "0.0.1",
"description": "A simple certificate generation and management server.",
"main": "index.js",
"dependencies": {
"argh": "1.0.0",
"async-mutex": "0.2.4",
"es6-enum": "1.1.0",
"koa": "2.11.0",
"koa-bodyparser": "4.3.0",
"koa-router": "8.0.8",
"koa-send": "5.0.0",
"mz": "2.7.0",
"yargs": "15.3.1"
},
"devDependencies": {
"@mithril-icons/font-awesome": "1.2.0",
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-node-resolve": "11.0.1",
"docdash": "^1.2.0",
"jsdoc": "~3.6.5",
"jsdoc-export-default-interop": "^0.3.1",
"mithril": "2.0.4",
"rollup": "2.35.1"
},
"scripts": {
"build": "rollup --config rollup_conf.js",
"watch": "rollup --config rollup_conf.js --watch",
"start": "node server/index.js --storage-dir test_ca --scratch-dir _scratch_ --port 3000",
"doc": "jsdoc --configure jsdoc_conf.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cert",
"certificate",
"x509"
],
"author": "John Lamp",
"license": "MIT"
}