tsrun/package.json

29 lines
680 B
JSON
Raw Normal View History

2018-06-04 21:25:19 +00:00
{
2018-06-04 21:50:26 +00:00
"name": "@gitzone/tsrun",
2018-10-14 16:51:41 +00:00
"version": "1.1.13",
2018-06-04 21:25:19 +00:00
"description": "run typescript programs efficiently",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"bin": {
2018-06-30 17:20:36 +00:00
"tsrun": "./cli.js"
2018-06-04 21:25:19 +00:00
},
"scripts": {
2018-08-08 20:33:07 +00:00
"test": "(tsbuild && node ./cli.js test/test.ts)",
2018-06-04 21:25:19 +00:00
"format": "(gitzone format)",
2018-08-08 20:33:07 +00:00
"build": "(tsbuild)",
2018-07-01 15:44:12 +00:00
"postinstall": "(node ./cli.js scripts/postinstall.ts)"
2018-06-04 21:25:19 +00:00
},
"devDependencies": {
2018-08-08 20:33:07 +00:00
"@types/node": "^10.5.7"
},
2018-06-04 21:25:19 +00:00
"dependencies": {
2018-08-08 21:14:11 +00:00
"@gitzone/tsbuild": "^2.0.22",
2018-08-08 20:33:07 +00:00
"@pushrocks/smartfile": "^6.0.6",
2018-07-02 07:03:26 +00:00
"ts-node": "^7.0.0",
2018-08-08 20:33:07 +00:00
"typescript": "^3.0.1"
2018-06-04 21:25:19 +00:00
},
"private": false
2018-08-08 20:33:07 +00:00
}