-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "httpany",
"version": "0.1.7",
"description": "a static server that you can control response headers by querystring",
"main": "./src/app.js",
"bin": {
"httpany": "./bin/cli.js"
},
"files": [
"src",
"bin"
],
"scripts": {
"test": "npm run lint && nyc ava test/test.js",
"lint": "eslint ./bin ./src ./test --fix"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "flowmemo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/flowmemo/httpany.git"
},
"devDependencies": {
"ava": "^0.19.1",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"node-fetch": "^1.7.1",
"nyc": "^11.0.2"
},
"dependencies": {
"chalk": "^1.1.3",
"koa": "^1.4.0",
"koa-httpany": "^0.1.5",
"koa-static": "^2.1.0",
"minimist": "^1.2.0"
}
}