forked from Trusted-eSign/trusted-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 KB
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
{
"name": "trusted-crypto",
"version": "1.0.0",
"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"
},
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha test && npm run lint && npm run lintTS",
"lint": "./node_modules/.bin/eslint test",
"lintTS": "./node_modules/.bin/tslint lib/**/*.ts",
"build": "node-gyp build && tsc;",
"install": "typings install && node-gyp configure && node-gyp build && tsc",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"crypto",
"trusted",
"pki",
"cms"
],
"dependencies": {
"async": "^2.0.0",
"request": "^2.73.0"
},
"devDependencies": {
"coveralls": "^2.11.12",
"eslint": "^3.0.1",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"nan": "^2.4.0",
"tslint": "^3.13.0",
"typescript": "^1.8.10",
"typings": "^1.3.3"
},
"author": "Trusted Plus development team"
}