-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
45 lines (45 loc) · 1.1 KB
/
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
37
38
39
40
41
42
43
44
45
{
"keywords": [
"typescript",
"cxx",
"tsc-cxx",
"compiler"
],
"license": "MIT",
"main": "__out/main.js",
"name": "typescript_cxx",
"version": "1.0.0",
"description": "",
"scripts": {
"run": "node __out/main.js",
"test": "mocha -u tdd --timeout 10000 --colors -r ts-node/register spec/**/*.spec.ts",
"test1": "mocha -u tdd --timeout 10000 --colors -r ts-node/register spec/break_continue.spec.ts",
"watch": "tsc -w -p ./",
"lint": "tslint src/**/*.ts -t verbose",
"build": "tsc -p tsconfig.json",
"exec": "ts-node src/main.ts",
"prepublish": "prepublish_npm.cmd"
},
"bin": {
"tsc-cxx": "./__out/main.js"
},
"private": true,
"dependencies": {
"cross-spawn": "^6.0.5",
"fs-extra": "^7.0.1",
"install": "^0.12.2",
"path": "^0.12.7",
"source-map": "^0.7.3",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/fs-extra": "^5.1.0",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"ts-node": "^8.8.2",
"tslint": "^5.20.1",
"minimist": "^0.2.1"
}
}