-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 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
{
"name": "strong-cluster-tls-store",
"version": "1.0.3",
"description": "Implementation of TLS session store using node's native cluster messaging",
"license": "Artistic-2.0",
"main": "index.js",
"scripts": {
"blanket": {
"pattern": "//^((?!(node_modules|test)).)*$/"
},
"coverage": "./node_modules/.bin/mocha -r blanket -R html-cov > coverage.html",
"test": "mocha --reporter spec",
"benchmark": "node benchmark/tls-connect.js",
"lint": "./node_modules/.bin/jshint *.js test lib benchmark"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/strong-cluster-tls-store.git"
},
"author": {
"name": "Miroslav Bajtos",
"email": "[email protected]"
},
"peerDependencies": {
"strong-store-cluster": "^1.x"
},
"devDependencies": {
"strong-store-cluster": "^1.x",
"mocha": "~1.9.0",
"jshint": "~2.0.1",
"blanket": "~1.1.4",
"chai": "~1.7.2",
"debug": "~0.7.2"
},
"engines": {
"node": ">=0.10.0"
}
}