-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
53
54
55
{
"name": "@mgit-at/typescript-flatbuffers-codegen",
"version": "0.1.2",
"author": "Patrick Pichler <[email protected]> (https://github.com/aveexy)",
"homepage": "https://github.com/mgit-at/typescript-flatbuffers-codegen",
"license": "Apache-2.0",
"types": "dist/lib/fblib.d.ts",
"main": "dist/lib/fblib.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mgit-at/typescript-flatbuffers-codegen.git"
},
"bin": {
"flattsc": "dist/bin/flattsc.js"
},
"scripts": {
"flattsc": "ts-node ./bin/flattsc.ts",
"build_ebnf_parser": "pegjs src/ebnf/ebnf.pegjs",
"test": "jest",
"test:watch": "jest --watchAll",
"build": "tsc",
"prepare": "tsc"
},
"dependencies": {
"deep-equal": "^2.0.5",
"ebnf": "^1.9.0",
"ebnf-parser": "^0.1.10",
"flatbuffers": "^1.12.0",
"pegjs": "^0.10.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/deep-equal": "^1.0.1",
"@types/flatbuffers": "^1.10.0",
"@types/jest": "^26.0.20",
"@types/md5": "^2.3.0",
"@types/node": "^14.14.31",
"@types/yargs": "^16.0.0",
"jest": "^26.6.3",
"md5": "^2.3.0",
"ts-jest": "^26.5.1"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/mgit-at/typescript-flatbuffers-codegen/issues"
},
"description": "",
"files": [
"dist"
]
}