-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1017 Bytes
/
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
{
"name": "@rbxts/experimental-reflect",
"version": "1.0.0",
"main": "out/init.lua",
"license": "MIT",
"author": {
"name": "typechecked",
"email": "[email protected]",
"url": "https://typechecked.dev"
},
"repository": "github:cmumme/Roblox-TS-Reflect-Metadata",
"scripts": {
"build": "rbxtsc",
"watch": "rbxtsc -w",
"prepublishOnly": "yarn run build",
"test": "mocha -r ts-node/register 'src/**/*.spec.ts'"
},
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^1.3.3-types.1",
"@rbxts/types": "^1.0.646",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"chai": "^4.3.6",
"eslint": "^8.26.0",
"eslint-plugin-roblox-ts": "^0.0.34",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}