forked from benschmaus/nodeload
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "nss",
"version": "0.4.1-BETA",
"description": "Load testing library for node.js",
"keywords": ["testing", "load testing", "http"],
"homepage": "https://github.com/Samuel29/NodeStressSuite",
"engines": {
"node": ">=0.4"
},
"contributors": [
"Benjamin Schmaus <[email protected]>",
"Jonathan Lee <[email protected]>",
"Robert Newson <[email protected]>",
"Michael Mattozzi <[email protected]>",
"Samuel Linclau <[email protected]>"
],
"bugs": {
"web" : "https://github.com/Samuel29/NodeStressSuite/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/Samuel29/NodeStressSuite"
},
"main": "./nodeload.js",
"bin": {
"nodeload.js": "./nodeload.js",
"nl.js": "./nl.js"
},
"directories": {
"doc": "./doc",
"lib": "./lib",
"example": "./examples"
},
"scripts": {
"test": "expresso",
"preinstall": "make clean compile"
},
"devDependencies": {
"expresso": ">=0.7.7"
},
"dependencies": {
"optparse": "1.0.3"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Samuel29/NodeStressSuite/raw/master/LICENSE"
}
]
}