-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "@ts-defold/tstl-export-as-global",
"version": "1.0.2",
"description": "TypeScriptToLua plugin that transforms exports into globals",
"repository": {
"type": "git",
"url": "git+https://github.com/ts-defold/tstl-export-as-global-plugin.git"
},
"keywords": [
"typescript",
"lua",
"defold"
],
"author": "Justin Walsh (@thejustinwalsh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ts-defold/tstl-export-as-global-plugin/issues"
},
"homepage": "https://github.com/ts-defold/tstl-export-as-global-plugin#readme",
"engines": {
"node": ">=12.13.0"
},
"main": "dist/index.js",
"files": [
"dist/**/*.js"
],
"scripts": {
"prepublishOnly": "npm run test && npm run build",
"build": "tsc",
"test": "jest"
},
"peerDependencies": {
"typescript-to-lua": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"jest": "^26.5.3",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "~4.3.5",
"typescript-to-lua": "^1.0.0"
}
}