tsrun/package.json

42 lines
894 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",
2020-06-01 19:38:19 +00:00
"version": "1.2.12",
2018-06-04 21:25:19 +00:00
"description": "run typescript programs efficiently",
2020-06-01 18:32:33 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2018-06-04 21:25:19 +00:00
"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": {
2020-06-01 18:32:33 +00:00
"@gitzone/tsbuild": "^2.1.24",
"@types/node": "^14.0.6",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0"
},
2018-06-04 21:25:19 +00:00
"dependencies": {
2020-06-01 18:32:33 +00:00
"@pushrocks/smartfile": "^7.0.12",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
2018-06-04 21:25:19 +00:00
},
2019-07-17 11:26:52 +00:00
"private": false,
"files": [
2020-06-01 19:38:19 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-07-17 11:26:52 +00:00
"cli.js",
"npmextra.json",
"readme.md"
]
2020-06-01 19:38:19 +00:00
}