-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "create-test-server",
"version": "3.0.1",
"description": "Creates a minimal Express server for testing",
"main": "src/index.js",
"scripts": {
"test": "xo && nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"xo": {
"extends": "xo-lukechilds"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukechilds/create-test-server.git"
},
"keywords": [
"create",
"test",
"server",
"mock",
"nock",
"testing",
"ci",
"unit",
"tests",
"ssl",
"https",
"http",
"express"
],
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukechilds/create-test-server/issues"
},
"homepage": "https://github.com/lukechilds/create-test-server",
"dependencies": {
"body-parser": "^1.18.2",
"create-cert": "^1.0.2",
"express": "^4.15.3",
"pify": "^3.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"eslint-config-xo-lukechilds": "^1.0.0",
"got": "^8.0.0",
"nyc": "^11.0.2",
"xo": "^0.19.0"
}
}