-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "ts2lua",
"version": "1.0.69",
"description": "Change typescript to lua.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "tsc && node index.js",
"build": "tsc",
"release": "npm config set registry=https://registry.npmjs.org && npm version patch && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Halliwood/ts2lua.git"
},
"keywords": [
"typescript",
"lua"
],
"author": "Halliwood",
"license": "MIT",
"bugs": {
"url": "https://github.com/Halliwood/ts2lua/issues"
},
"homepage": "https://github.com/Halliwood/ts2lua#readme",
"declaration": true,
"dependencies": {
"@types/string-format": "^2.0.0",
"@typescript-eslint/typescript-estree": "^1.13.0",
"string-format": "^2.0.0",
"typescript": "^3.5.3"
},
"devDependencies": {
"@types/node": "^12.6.8",
"@types/typescript": "^2.0.0",
"dtsmake": "0.0.10"
},
"files": [
"index.js",
"index.d.ts",
"gen/LuaMaker.js",
"gen/TsCollector.js",
"lib/func.json",
"lib/regex.txt",
"lua/class.lua",
"lua/date.lua",
"lua/trycatch.lua",
"lua/stringutil.lua",
"lua/tableutil.lua",
"lua/dmc_lua/lua_class.lua"
]
}