-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
42 lines (42 loc) · 1.04 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
{
"author": "Mark Cavage <[email protected]>",
"contributors": [
"Mike Harsch",
"Nate Fitch",
"Yunong Xiao",
"Patrick Mooney",
"Julien Gilli"
],
"name": "fast",
"homepage": "https://github.com/mcavage/node-fast",
"version": "0.5.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mcavage/node-fast.git"
},
"main": "lib/index.js",
"engines": {
"node": ">=0.10"
},
"dependencies": {
"assert-plus": "^0.1.5",
"backoff": "~2.5.0",
"crc": "^0.3.0",
"microtime": "^2.0.0",
"once": "^1.3.2",
"readable-stream": "^2.0.3",
"verror": "^1.6.0"
},
"optionalDependencies": {
"dtrace-provider": "^0.6.0"
},
"devDependencies": {
"tape": "^4.2.2",
"faucet": "^0.0.1",
"istanbul": "^0.4.0"
},
"scripts": {
"test": "./node_modules/.bin/istanbul cover --print none test/test.js | ./node_modules/.bin/faucet"
}
}