-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 KB
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
{
"name": "tiny.http",
"version": "0.0.1",
"engines": {
"node": ">=8.11.4"
},
"repository": {
"type": "git",
"url": "https://github.com/Tiny.IO/tiny.http.git"
},
"author": {
"name": "xuewuli",
"email": "26448247@qq.com",
"url": "https://github.com/xuewuli"
},
"scripts": {
"install": "node-gyp-build",
"prebuild": "prebuildify --napi",
"test": "tape tests/*.js | tap-spec",
"lint": "eslint --quiet --fix .",
"cover": "nyc --reporter=lcovonly --reporter=text --reporter=text-summary --exclude=tests tape tests/*.js | tap-spec",
"bench": "node benchmark"
},
"license": "MIT",
"devDependencies": {
"autocannon": "^4.6.0",
"benchmark": "^2.1.4",
"cli-table": "^0.3.1",
"coveralls": "^3.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"kleur": "^3.0.3",
"nyc": "^15.0.0",
"ora": "^4.0.3",
"pancho": "^1.0.2",
"prebuildify": "^3.0.4",
"prettier": "^1.17.1",
"tap-spec": "^5.0.0",
"tape": "^4.10.2"
},
"dependencies": {
"node-gyp-build": "^4.2.1"
},
"prettier": {
"singleQuote": true,
"printWidth": 100
}
}