-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.13 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
{
"name": "rbxts-transformer-switchcase",
"description": "Transformer for converting switch cases to simple ifelse blocks so luau can better optimize them",
"keywords": [
"transformer",
"rbxts",
"roblox",
"typescript"
],
"version": "1.0.1",
"author": "ketrab2004 (https://github.com/ketrab2004)",
"license": "MPL-2.0",
"repository": "github:ketrab2004-Roblox/rbxts-transformer-simpleswitch",
"main": "out/index.js",
"scripts": {
"build": "tsc",
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.config.json",
"test:fancy": "ts-node node_modules/jasmine/bin/jasmine --reporter=jasmine-console-reporter --config=jasmine.config.json",
"prepublishOnly": "npm run test && npm run build"
},
"dependencies": {
"typescript": "=4.8.3"
},
"devDependencies": {
"@types/jasmine": "^4.3.0",
"@types/node": "^16.14.0",
"jasmine": "^4.5.0",
"jasmine-console-reporter": "^3.1.0",
"ts-expose-internals": "^4.8.4",
"ts-node": "^10.9.1"
},
"files": [
"out"
]
}