-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "trusted-crypto",
"version": "1.3.3",
"description": "Trusted crypto library",
"license": "Apache-2.0",
"bugs": "https://github.com/TrustedPlus/trusted-crypto/issues",
"homepage": "https://github.com/TrustedPlus/trusted-crypto",
"repository": {
"type": "git",
"url": "https://github.com/TrustedPlus/trusted-crypto"
},
"bin": {
"trusted-crypto": "./bin/trusted-crypto"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "node_modules/.bin/mocha test && npm run lint",
"lint": "npm run lintES && npm run lintTS",
"lintES": "./node_modules/.bin/eslint test",
"lintTS": "./node_modules/.bin/tslint lib/**/*.ts",
"build": "node-gyp configure && node-gyp build && tsc",
"coverage": "nyc node_modules/.bin/mocha test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"crypto",
"trusted",
"pki",
"cms"
],
"dependencies": {
"async": "^2.6.1",
"commander": "^2.11.0",
"request": "^2.88.0"
},
"devDependencies": {
"@types/async": "^2.0.45",
"@types/node": "^8.0.52",
"@types/request": "^2.0.8",
"coveralls": "^3.0.0",
"eslint": "^5.12.1",
"mocha": "^5.2.0",
"nan": "^2.8.0",
"nyc": "^13.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"author": "Trusted Plus development team"
}