-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.52 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
{
"name": "@vanioinformatika/simple-keystore",
"version": "2.1.2",
"description": "Simple Node.js filesystem keystore",
"author": "Gyula Szalai <[email protected]>",
"license": "MIT",
"contributors": [
{
"name": "Gyula Szalai",
"email": "[email protected]"
},
{
"name": "Kovács Vince",
"email": "[email protected]"
}
],
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "mocha --exit --require ts-node/register \"lib/**/*.spec.ts\"",
"preversion": "git push && npm test && npm run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/vanioinformatika/node-simple-keystore.git"
},
"bugs": {
"url": "https://github.com/vanioinformatika/node-simple-keystore/issues"
},
"keywords": [
"node",
"keystore",
"pki",
"jwk"
],
"dependencies": {
"debug": "^4.3.1",
"jsrsasign": "^10.1.12",
"pem": "^1.14.4"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/debug": "^4.1.5",
"@types/dirty-chai": "^2.0.2",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"@types/pem": "^1.9.5",
"chai": "^4.3.3",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"mocha": "^8.3.0",
"mocha-junit-reporter": "^2.0.0",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"engines": {
"node": ">=8.0.0"
},
"types": "dist/index.d.ts"
}