56 lines
1.6 KiB
JSON
56 lines
1.6 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": "node ./dist/index.js",
|
|
"bin": {
|
|
"tstatic": "node ./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"start": "node ./dist/index.js",
|
|
"postinstall": "typings install",
|
|
"build": "tsc",
|
|
"test": "npm run build && npm run mocha && nsp check",
|
|
"mocha": "mocha --compilers ts:ts-node/register --require scripts/test-helper.js tests/**.test.ts",
|
|
"lint": "tslint src/**/*.ts"
|
|
},
|
|
"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": {
|
|
"basic-auth": "=1.1.0",
|
|
"compression": "=1.6.2",
|
|
"connect-static-file": "=1.1.2",
|
|
"docopt": "=0.6.2",
|
|
"express": "=4.14.1",
|
|
"express-basic-auth": "=0.3.2",
|
|
"express-ip-access-control": "=1.0.5",
|
|
"express-winston": "=2.2.0",
|
|
"helmet": "=3.4.0",
|
|
"opbeat": "=4.11.0",
|
|
"open": "=0.0.5",
|
|
"serve-index": "=1.8.0",
|
|
"winston": "=2.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "=3.5.0",
|
|
"chai-as-promised": "=6.0.0",
|
|
"mocha": "=3.2.0",
|
|
"node-fetch": "=1.6.3",
|
|
"nsp": "=2.6.2",
|
|
"supertest": "=3.0.0",
|
|
"ts-node": "=2.1.0",
|
|
"tslint": "=4.4.2",
|
|
"typescript": "=2.1.6",
|
|
"typings": "=2.1.0"
|
|
}
|
|
}
|