forked from pinojs/sonic-boom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.21 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
51
52
53
54
55
{
"name": "sonic-boom",
"version": "2.0.2",
"description": "Extremely fast utf8 only stream implementation",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"test": "npm run test:types && standard && tap test.js",
"test:unit": "tap test.js",
"test:types": "tsc && tsd && ts-node types/tests/test.ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinojs/sonic-boom.git"
},
"keywords": [
"stream",
"fs",
"net",
"fd",
"file",
"descriptor",
"fast"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinojs/sonic-boom/issues"
},
"homepage": "https://github.com/pinojs/sonic-boom#readme",
"devDependencies": {
"@types/node": "^16.0.3",
"fastbench": "^1.0.1",
"husky": "^7.0.1",
"proxyquire": "^2.1.0",
"standard": "^16.0.3",
"tap": "^15.0.1",
"tsd": "^0.17.0",
"typescript": "^4.3.4",
"ts-node": "^10.0.0"
},
"dependencies": {
"atomic-sleep": "^1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"tsd": {
"directory": "./types"
}
}