-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.16 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
46
47
48
{
"homepage": "https://github.com/ASDAlexander77/TypeScriptLUA/#readme",
"keywords": [
"typescript",
"lua",
"tsc-lua",
"compiler"
],
"license": "MIT",
"main": "__out/main.js",
"name": "typescript_lua",
"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",
"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-lua": "./__out/main.js"
},
"bugs": {
"url": "https://github.com/ASDAlexander77/TypeScriptLUA/issues"
},
"private": true,
"dependencies": {
"cross-spawn": "^6.0.5",
"fs-extra": "^7.0.1",
"npm": "^6.12.0",
"path": "^0.12.7",
"source-map": "^0.7.3",
"typescript": "^3.3.3333"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.5",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"typescript": "^3.3.3333-dev"
}
}