tsrun/package.json

26 lines
576 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-06-30 16:43:20 +00:00
"version": "1.0.9",
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": {
"tsrun": "dist/cli.js"
},
"scripts": {
2018-06-25 08:23:15 +00:00
"test": "(npmts --notest && node dist/cli.js test/test.ts)",
2018-06-04 21:25:19 +00:00
"format": "(gitzone format)",
"build": "echo \"Not needed for now\""
},
"devDependencies": {
"@types/node": "^10.3.0"
},
2018-06-04 21:25:19 +00:00
"dependencies": {
"ts-node": "^6.1.0",
"typescript": "^2.9.1"
},
"private": false
}