-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.22 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
56
57
58
59
60
61
62
63
{
"name": "serve-files",
"version": "2.0.2",
"description": "Serve files",
"keywords": "file, server",
"main": "index.js",
"bin": {
"serve-files": "bin/serve-files"
},
"scripts": {
"test": "tape ./test/index.js | ./node_modules/.bin/tap-diff",
"benchmarks": "DURATION=60 CONNECTIONS=100 node ./benchmarks/index.js",
"checkAudit": "npm shrinkwrap && npm audit > ./reports/audit.log || cat ./reports/audit.log; rm npm-shrinkwrap.json",
"predoc": "rm -rf ./reports/jsdoc",
"doc": "jsdoc -d reports/jsdoc -c .jsdoc.json --readme README.md -r *.js lib",
"postdoc": "echo 'Documentation available at `reports/jsdoc/index.html`'",
"precheckStyle": "rm -f ./reports/eslint.txt",
"checkStyle": "eslint index.js lib/*.js bin/* test/**/*.js benchmarks/*.js > ./reports/eslint.txt || echo 'ESLint results saved to `reports/eslint.txt`' && cat ./reports/eslint.txt",
"precheckCoverage": "rm -rf ./reports/coverage",
"checkCoverage": "c8 --clean --report --reporter text --reporter html --reports-dir reports/coverage node ./test/index.js",
"postcheckCoverage": "echo Coverage results saved to '`reports/coverage/index.html`'",
"precheckMemory": "rm -rf ./reports/*.heapsnapshot",
"checkMemory": "node --expose-gc ./test/memory.js",
"postcheckMemory": "echo 'heapsnapshots created in `reports` directory'",
"start": "./bin/serve-files"
},
"engines": {
"node": ">=11.13"
},
"devDependencies": {
"autocannon": "^7.5.0",
"c8": "^7.10.0",
"docdash": "^1.2.0",
"eslint": "^8.3.0",
"eslint-plugin-jsdoc": "^37.0.3",
"fastseries": "^2.0.0",
"jsdoc": "^3.6.7",
"needle": "^3.0.0",
"node-static": "^0.7.11",
"serve-static": "^1.14.1",
"sirv": "^1.0.18",
"st": "^3.0.0",
"statique": "^3.3.5",
"tap-diff": "^0.1.1",
"tape": "^5.3.2",
"tape-catch": "^1.0.6"
},
"homepage": "https://github.com/ahwayakchih/serve-files",
"author": "Marcin Konicki (https://ahwayakchih.neoni.net)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ahwayakchih/serve-files/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/ahwayakchih/serve-files.git"
},
"files": [
"bin/**",
"lib/**",
"index.js"
]
}