-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 908 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "tsch",
"version": "1.0.1",
"files": [
"/dist"
],
"main": "./dist/cli/index.js",
"types": "./dist/__types__",
"bin": {
"tsch": "./dist/cli/index.js"
},
"engines": {
"node": ">=12.10.0"
},
"engineStrict": true,
"scripts": {
"build": "ts-node ./tasks/run-build.ts",
"build:dev": "ts-node ./tasks/run-build.ts -d",
"start": "node ./dist/cli/index.js",
"build-tests:dev": "tsc --project ./tsconfig-test.json --watch",
"test:dev": "jest --roots ./dist-test/test --watch",
"build-tests": "tsc --project ./tsconfig-test.json",
"test": "jest --roots ./dist-test/test",
"release": "ts-node ./tasks/run-release.ts"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^14.14.31",
"jest": "^27.0.6",
"ts-node": "^9.1.1",
"typescript": "^4.4.0-beta"
},
"dependencies": {
"yargs": "^17.1.0"
}
}