forked from PeculiarVentures/graphene
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.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
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
79
80
81
82
83
84
85
86
87
88
{
"name": "graphene-pk11",
"version": "2.1.12",
"description": "A simple layer for interacting with PKCS #11 / PKCS11 / CryptoKI for Node in TypeScript",
"main": "./build/cjs/index.js",
"module": "./build/es2015/index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha",
"clean": "rimraf build",
"build": "npm run build:module",
"build:module": "npm run build:cjs && npm run build:es2015",
"build:cjs": "tsc -p tsconfig.json --removeComments --module commonjs --outDir build/cjs",
"build:es2015": "tsc -p tsconfig.json --removeComments --module ES2015 --outDir build/es2015",
"rebuild": "npm run clean && npm run build",
"prepare": "npm run build",
"pub": "npm run rebuild && npm version patch && npm publish && git push && git push --tags",
"sync": "git ac && git pull --rebase && git push",
"lint": "tslint 'src/**/*.ts'",
"coverage": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/PeculiarVentures/graphene.git"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"int64-buffer": "^0.99.1007",
"pkcs11js": "^1.0.22",
"tslib": "^2.0.1"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^12.12.57",
"coveralls": "^3.1.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
},
"bugs": {
"url": "https://github.com/PeculiarVentures/graphene/issues"
},
"keywords": [
"pkcs11",
"cryptography",
"cryptoki",
"token",
"smartcard",
"hsm",
"bitcoin",
"RSA",
"ECC",
"nss"
],
"author": "PeculiarVentures",
"license": "MIT",
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text-summary",
"html"
]
},
"mocha": {
"require": "ts-node/register",
"extension": [
"ts"
],
"spec": [
"test/**/*.ts"
]
}
}