archive
/
tstatic
Archived
1
Fork 0

fix entry points

This commit is contained in:
Jake Howard 2017-02-20 08:41:03 +00:00
parent 1971ece938
commit 95a471d055
1 changed files with 3 additions and 2 deletions

View File

@ -2,13 +2,14 @@
"name": "tstatic",
"version": "0.0.1",
"description": "The only static-file server you'll ever need!",
"main": "node ./dist/index.js",
"main": "./dist/server.js",
"bin": {
"tstatic": "node ./dist/index.js"
"tstatic": "./dist/index.js"
},
"scripts": {
"start": "node ./dist/index.js",
"postinstall": "typings install",
"prepublish": "npm run build",
"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",