forked from TypeScriptToLua/TypeScriptToLua
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.05 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ceres-tstl",
"version": "0.31.0-patch1",
"description": "Fork of the TSTL project to accomodate Warcraft III live reload.",
"repository": "https://github.com/TypeScriptToLua/TypeScriptToLua",
"license": "MIT",
"keywords": [
"typescript",
"lua",
"tstl",
"transpiler",
"ceres",
"wc3"
],
"files": [
"dist/**/*.js",
"dist/**/*.lua",
"dist/**/*.ts"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm run build-lualib",
"build-lualib": "ts-node --files ./build_lualib.ts",
"pretest": "npm run lint && ts-node --files --transpile-only ./build_lualib.ts",
"test": "jest",
"lint": "npm run lint:tslint && npm run lint:prettier",
"lint:prettier": "prettier --check \"**/*.{js,ts,yml,json,md}\" || (echo 'Run `npm run fix:prettier` to fix it.' && exit 1)",
"lint:tslint": "tslint -p . && tslint -p test && tslint -p src/lualib",
"fix:prettier": "prettier --check --write \"**/*.{js,ts,yml,json,md}\"",
"release-major": "npm version major",
"release-minor": "npm version minor",
"release-patch": "npm version patch",
"preversion": "npm run build && npm test",
"postversion": "git push && git push --tags"
},
"bin": {
"ceres-tstl": "./dist/tstl.js"
},
"engines": {
"node": ">=12.13.0"
},
"dependencies": {
"resolve": "^1.13.1",
"source-map": "^0.7.3",
"typescript": "^3.7.3"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"@types/resolve": "0.0.8",
"fengari": "^0.1.4",
"fs-extra": "^8.1.0",
"javascript-stringify": "^2.0.1",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"tslint": "^5.20.1"
}
}