This repository has been archived by the owner on Feb 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
53 lines (53 loc) · 1.66 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
{
"name": "@govtechsg/certificate-cli",
"version": "3.1.3",
"description": "",
"main": "index.js",
"bin": {
"opencert": "./index.js"
},
"scripts": {
"test": "nyc --reporter=html mocha --timeout 5000 -- ./test/helpers.js './test/**/*.test.js' './src/**/*.test.js'",
"test-watch": "mocha ./test/helpers.js './test/**/*.test.js' './src/**/*.test.js' --watch --recursive",
"lint": "eslint . --ext .js --max-warnings 0",
"lint:fix": "eslint . --ext .js --fix",
"benchmark:make-certs": "./scripts/makeCerts.sh 20000",
"benchmark:run": "./scripts/benchmark.sh",
"benchmark:clean": "rm -rf ./benchmark",
"benchmark:full": "npm run benchmark:make-certs && npm run benchmark:run && npm run benchmark:clean",
"semantic-release": "semantic-release"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-prettier": "^2.6.0",
"mocha": "^4.1.0",
"nyc": "^13.3.0",
"prettier": "^1.10.2",
"sinon": "^7.2.3"
},
"dependencies": {
"@govtechsg/open-certificate": "2.0.17",
"ethereumjs-util": "^6.0.0",
"json-schema-faker": "^0.5.0-rc9",
"lodash": "^4.17.5",
"mkdirp": "^0.5.1",
"proxyquire": "^2.1.0",
"semantic-release": "^15.13.18",
"tmp": "^0.0.33",
"winston": "^3.0.0-rc1",
"yargs": "^11.0.0"
},
"publishConfig": {
"access": "public"
}
}