tsrun/package.json
2018-06-30 19:20:49 +02:00

26 lines
571 B
JSON

{
"name": "@gitzone/tsrun",
"version": "1.0.10",
"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\""
},
"devDependencies": {
"@types/node": "^10.3.0"
},
"dependencies": {
"ts-node": "^6.1.0",
"typescript": "^2.9.1"
},
"private": false
}