tsrun/package.json

30 lines
684 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",
2019-04-30 10:33:08 +00:00
"version": "1.2.6",
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)",
"build": "(tsbuild)"
2018-06-04 21:25:19 +00:00
},
"devDependencies": {
2019-04-08 14:30:24 +00:00
"@types/node": "^11.13.0",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0"
},
2018-06-04 21:25:19 +00:00
"dependencies": {
"@gitzone/tsbuild": "^2.1.8",
2019-04-08 15:08:26 +00:00
"@pushrocks/smartfile": "^7.0.2",
2019-04-08 14:30:24 +00:00
"ts-node": "^8.0.3",
"typescript": "^3.4.2"
2018-06-04 21:25:19 +00:00
},
"private": false
2019-04-08 15:10:10 +00:00
}