-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 990 Bytes
/
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
{
"name": "fetch-test-server",
"version": "1.2.0",
"description": "Test node.js HTTP servers using the fetch API",
"main": "index.js",
"scripts": {
"lint": "eslint *.js",
"mocha": "mocha *.test.js",
"test": "npm run lint && npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amacneil/fetch-test-server.git"
},
"author": "Adrian Macneil [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/amacneil/fetch-test-server/issues"
},
"homepage": "https://github.com/amacneil/fetch-test-server#readme",
"keywords": [
"express",
"fetch",
"http",
"integration",
"koa",
"server",
"test",
"testing"
],
"dependencies": {
"debug": "^3.1.0",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"mocha": "^5.1.1"
}
}