-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "bixby-pki",
"version": "0.0.2",
"description": "PKI components for Bixby.js.",
"keywords": [
"pki"
],
"author": {
"name": "Jared Hanson",
"email": "[email protected]",
"url": "http://www.jaredhanson.net/"
},
"repository": {
"type": "git",
"url": "git://github.com/bixbyjs/bixby-pki.git"
},
"bugs": {
"url": "http://github.com/bixbyjs/bixby-pki/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"main": "./index.js",
"dependencies": {
"akeypair": "~0.2.0",
"bootable": "~0.2.4",
"node-forge": "^0.6.44",
"path-os": "~0.1.0",
"pkginfo": "~0.3.0",
"sks": "git://github.com/jaredhanson/node-sks.git"
},
"devDependencies": {
"make-node": "0.3.x",
"mocha": "2.x.x",
"chai": "3.x.x"
},
"engines": {
"node": "*"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
}
}