This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
tstatic/package.json
2017-01-19 17:39:29 +00:00

43 lines
1.1 KiB
JSON

{
"name": "tstatic",
"version": "1.0.0",
"description": "Container to host simple static applications using a node server, so files can be deployed using rsync",
"main": "./src/server.js",
"bin": {
"tstatic": "./src/server.js"
},
"scripts": {
"test": "npm run mocha && npm run lint && nsp check",
"lint": "eslint src/ tests/",
"start": "./src/server.js site/",
"mocha": "NODE_ENV=test mocha tests/**.test.js"
},
"engines": {
"node": "6.9.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RealOrangeOne/tstatic.git"
},
"author": "Jake Howard <git@theorangeone.net>",
"bugs": {
"url": "https://github.com/RealOrangeOne/tstatic/issues"
},
"homepage": "https://github.com/RealOrangeOne/tstatic#readme",
"dependencies": {
"compression": "=1.6.2",
"connect-static-file": "=1.1.2",
"express": "=4.14.0",
"express-winston": "=2.1.2",
"helmet": "=3.4.0",
"opbeat": "=4.7.0",
"winston": "=2.3.0"
},
"devDependencies": {
"eslint-config": "dabapps/eslint-config#2.0.5",
"mocha": "=3.2.0",
"nsp": "=2.6.2",
"supertest": "=2.0.1"
}
}