You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

52 lines
1.1 KiB

{
"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"
}
}