forked from TypeScriptToLua/TypeScriptToLua
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.97 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.97 KB
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": "typescript-to-lua",
"version": "0.35.0",
"description": "A generic TypeScript to Lua transpiler. Write your code in TypeScript and publish Lua!",
"repository": "https://github.com/TypeScriptToLua/TypeScriptToLua",
"license": "MIT",
"keywords": [
"typescript",
"lua",
"tstl",
"transpiler"
],
"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": "node build-lualib.js",
"pretest": "npm run lint && npm run build-lualib",
"test": "jest",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:prettier": "prettier --check . || (echo 'Run `npm run fix:prettier` to fix it.' && exit 1)",
"lint:eslint": "eslint . --ext .js,.ts",
"fix:prettier": "prettier --write .",
"preversion": "npm run build && npm test",
"postversion": "git push && git push --tags"
},
"bin": {
"tstl": "./dist/tstl.js"
},
"engines": {
"node": ">=12.13.0"
},
"dependencies": {
"resolve": "^1.15.1",
"source-map": "^0.7.3",
"typescript": "^3.9.2"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.7",
"@types/resolve": "1.14.0",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"fengari": "^0.1.4",
"fs-extra": "^8.1.0",
"javascript-stringify": "^2.0.1",
"jest": "^26.0.1",
"jest-circus": "^25.1.0",
"lua-types": "^2.8.0",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"ts-node": "^8.6.2"
}
}