archive
/
tstatic
Archived
1
Fork 0
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

43 lines
1.1 KiB
JSON
Raw Normal View History

2016-05-16 08:37:33 +01:00
{
2017-01-09 20:34:16 +00:00
"name": "tstatic",
2016-05-16 08:37:33 +01:00
"version": "1.0.0",
"description": "Container to host simple static applications using a node server, so files can be deployed using rsync",
"main": "server.js",
2017-01-09 20:34:16 +00:00
"bin": {
"tstatic": "./server.js"
}
2016-05-16 08:37:33 +01:00
"scripts": {
2016-10-30 22:21:10 +00:00
"test": "npm run mocha && npm run lint && nsp check",
"lint": "eslint server.js tests/**.js",
"start": "node server.js",
"mocha": "NODE_ENV=test mocha tests/**.test.js"
2016-05-16 08:37:33 +01:00
},
2016-08-13 16:31:22 +01:00
"engines": {
2017-01-09 20:34:16 +00:00
"node": "6.9.4"
2016-08-13 16:31:22 +01:00
},
2016-05-16 08:37:33 +01:00
"repository": {
"type": "git",
2017-01-09 20:34:16 +00:00
"url": "git+https://github.com/RealOrangeOne/tstatic.git"
2016-05-16 08:37:33 +01:00
},
"author": "Jake Howard <git@theorangeone.net>",
"bugs": {
2017-01-09 20:34:16 +00:00
"url": "https://github.com/RealOrangeOne/tstatic/issues"
2016-05-16 08:37:33 +01:00
},
2017-01-09 20:34:16 +00:00
"homepage": "https://github.com/RealOrangeOne/tstatic#readme",
2016-05-16 08:37:33 +01:00
"dependencies": {
2016-08-26 12:37:06 +01:00
"compression": "=1.6.2",
2016-08-20 23:09:04 +01:00
"connect-static-file": "=1.1.2",
2016-10-02 11:57:04 +01:00
"express": "=4.14.0",
2016-10-30 12:02:53 +00:00
"express-winston": "=2.0.0",
"helmet": "=2.3.0",
"winston": "=2.2.0"
2016-05-16 08:37:33 +01:00
},
"devDependencies": {
"eslint": "=1.9.0",
2016-10-02 11:58:46 +01:00
"eslint-config": "git://github.com/dabapps/eslint-config.git",
2016-10-30 22:21:10 +00:00
"mocha": "=3.1.2",
"nsp": "=2.6.1",
"supertest": "=2.0.1"
2016-05-16 08:50:55 +01:00
}
2016-05-16 08:37:33 +01:00
}