tsrun/package.json
2018-07-01 11:51:31 +02:00

28 lines
708 B
JSON

{
"name": "@gitzone/tsrun",
"version": "1.0.12",
"description": "run typescript programs efficiently",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"bin": {
"tsrun": "./cli.js"
},
"scripts": {
"test": "(npmts --notest && node ./cli.js test/test.ts)",
"format": "(gitzone format)",
"build": "echo \"Not needed for now\"",
"postinstall": "ts-node --ignore '' --compilerOptions '{\"lib\": [\"ES2015\"]}' scripts/postinstall.ts"
},
"devDependencies": {
"@types/node": "^10.3.0"
},
"dependencies": {
"smartfile": "^4.2.28",
"ts-node": "^6.1.0",
"typescript": "^2.9.1"
},
"private": false
}