-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 735 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 735 Bytes
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
{
"name": "pure",
"version": "1.0.0",
"description": "Experimental Node server without external dependencies.",
"main": "index.js",
"scripts": {
"test": "jest",
"doc": "jsdoc -c ./conf.json",
"example": "nodemon ./example/index.js",
"cannon": "autocannon -c 100 -d 5 -p 10 localhost:9000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregogalante/node-pure.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregogalante/node-pure/issues"
},
"homepage": "https://github.com/gregogalante/node-pure#readme",
"devDependencies": {
"autocannon": "^0.16.5",
"jest": "^20.0.4",
"jsdoc": "^3.5.4",
"nodemon": "^1.11.0"
}
}