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

57 lines
1.6 KiB
JSON
Raw Normal View History

2016-05-16 08:37:33 +01:00
{
2017-01-09 20:34:16 +00:00
"name": "tstatic",
2017-02-20 08:58:08 +00:00
"version": "1.0.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",
2017-02-20 08:42:37 +00:00
"prepublish": "typings install && npm run build",
2017-02-14 22:21:08 +00:00
"build": "tsc",
2017-04-18 12:58:43 +01:00
"test": "npm run build && npm run lint && npm run mocha && nsp check",
2017-02-27 10:02:30 +00:00
"mocha": "mocha --compilers ts:ts-node/register --require scripts/test-helper.js --recursive --bail tests/**/*.test.ts tests/*.test.ts",
2017-07-08 11:15:44 +01:00
"lint": "tslint src/**/*.ts --type-check --project tsconfig.json"
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": {
2017-02-15 20:54:47 +00:00
"basic-auth": "=1.1.0",
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",
2017-02-17 09:24:29 +00:00
"docopt": "=0.6.2",
2017-03-19 16:36:35 +00:00
"express": "=4.15.2",
"express-basic-auth": "1.0.1",
2017-02-13 09:49:32 +00:00
"express-ip-access-control": "=1.0.5",
2017-03-19 16:36:35 +00:00
"express-winston": "=2.3.0",
2017-07-08 11:23:52 +01:00
"helmet": "=3.6.1",
2017-03-19 16:36:35 +00:00
"opbeat": "=4.12.0",
2017-02-17 21:33:32 +00:00
"open": "=0.0.5",
2017-02-13 08:50:51 +00:00
"serve-index": "=1.8.0",
2017-02-15 21:01:01 +00:00
"winston": "=2.3.1"
2016-05-16 08:37:33 +01:00
},
"devDependencies": {
2017-07-08 11:23:52 +01:00
"chai": "=3.5.0",
2017-02-19 21:53:06 +00:00
"chai-as-promised": "=6.0.0",
2017-01-09 20:37:45 +00:00
"mocha": "=3.2.0",
2017-02-19 18:19:45 +00:00
"node-fetch": "=1.6.3",
2017-03-19 16:36:35 +00:00
"nsp": "=2.6.3",
2017-02-15 21:01:01 +00:00
"supertest": "=3.0.0",
2017-02-19 18:19:45 +00:00
"ts-node": "=2.1.0",
2017-03-19 16:36:35 +00:00
"tslint": "=4.5.1",
"typescript": "=2.2.1",
2017-02-15 21:01:01 +00:00
"typings": "=2.1.0"
2016-05-16 08:50:55 +01:00
}
2016-05-16 08:37:33 +01:00
}