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

63 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2016-05-16 08:37:33 +01:00
{
2017-01-09 20:34:16 +00:00
"name": "tstatic",
2018-03-15 22:07:57 +00:00
"version": "1.2.0",
2017-02-20 08:34:33 +00:00
"description": "The only static-file server you'll ever need!",
2017-02-20 08:41:03 +00:00
"main": "./dist/server.js",
2017-01-09 20:34:16 +00:00
"bin": {
2017-02-20 08:41:03 +00:00
"tstatic": "./dist/index.js"
2017-01-09 20:37:45 +00:00
},
2016-05-16 08:37:33 +01:00
"scripts": {
2017-02-17 09:24:29 +00:00
"start": "node ./dist/index.js",
2018-05-04 20:56:34 +01:00
"prepublishOnly": "npm run build",
2017-02-14 22:21:08 +00:00
"build": "tsc",
2018-01-28 11:29:54 +00:00
"test": "npm run lint && npm run mocha",
2018-03-15 21:29:04 +00:00
"mocha": "mocha --require scripts/test-helper.js --recursive --bail tests/**/*.test.ts tests/*.test.ts",
2018-03-15 21:31:01 +00:00
"lint": "tslint src/**/*.ts --project tsconfig.json"
2016-05-16 08:37:33 +01:00
},
2016-08-13 16:31:22 +01:00
"engines": {
2018-05-04 20:55:56 +01:00
"node": "8"
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": {
2018-03-15 21:23:59 +00:00
"compression": "1.7.2",
"connect-static-file": "2.0.0",
2017-07-08 14:18:15 +01:00
"docopt": "0.6.2",
2018-03-15 21:23:59 +00:00
"express": "4.16.3",
"express-basic-auth": "1.1.4",
2017-07-08 14:18:15 +01:00
"express-ip-access-control": "1.0.5",
2018-03-15 21:23:59 +00:00
"helmet": "3.12.0",
"morgan": "1.9.0",
2017-07-08 14:18:15 +01:00
"open": "0.0.5",
2018-03-15 21:23:59 +00:00
"serve-index": "1.9.1"
2016-05-16 08:37:33 +01:00
},
"devDependencies": {
2018-03-15 22:01:07 +00:00
"@types/docopt": "0.6.31",
"@types/node-fetch": "1.6.7",
"@types/open": "0.0.29",
2018-01-28 11:24:43 +00:00
"@types/chai": "4.1.2",
"@types/compression": "0.0.35",
2018-03-15 21:23:59 +00:00
"@types/express": "4.11.1",
2018-01-28 11:24:43 +00:00
"@types/helmet": "0.0.37",
2018-03-15 21:23:59 +00:00
"@types/mocha": "2.2.48",
"@types/morgan": "1.7.35",
2018-01-28 11:24:43 +00:00
"@types/serve-index": "1.7.29",
2018-03-15 21:23:59 +00:00
"chai": "4.1.2",
2017-07-08 14:18:15 +01:00
"chai-as-promised": "7.1.1",
2018-03-15 21:29:04 +00:00
"mocha": "5.0.4",
2018-03-15 21:23:59 +00:00
"node-fetch": "2.1.1",
2017-07-08 14:18:15 +01:00
"supertest": "3.0.0",
2018-03-15 21:29:04 +00:00
"ts-node": "5.0.1",
2018-03-15 21:31:01 +00:00
"tslint": "5.9.1",
2018-03-15 21:40:35 +00:00
"tslint-config-dabapps": "dabapps/tslint-config-dabapps#v0.3.0",
2018-03-15 21:31:01 +00:00
"typescript": "2.7.2"
2016-05-16 08:50:55 +01:00
}
2016-05-16 08:37:33 +01:00
}