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.

51 lines
1.1 KiB

7 years ago
{
"name": "create-test-server",
7 years ago
"version": "1.1.1",
7 years ago
"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": [
7 years ago
"create",
"test",
"server",
"mock",
"nock",
"testing",
"ci",
"unit",
"tests",
"ssl",
"https",
"http"
7 years ago
],
"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": {
"create-cert": "^1.0.2",
"express": "^4.15.3",
"pify": "^3.0.0"
},
7 years ago
"devDependencies": {
"ava": "^0.19.1",
"coveralls": "^2.13.1",
"eslint-config-xo-lukechilds": "^1.0.0",
"got": "^7.0.0",
7 years ago
"nyc": "^10.3.2",
"xo": "^0.19.0"
}
}