-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "flatterbuf-generator",
"version": "1.0.0",
"main": "ncc/index.js",
"author": "Meno Abels",
"license": "AFL-2.0",
"scripts": {
"clean": "gts clean",
"build": "tsc && npm run ncc",
"test": "jest -c jest.unit.js",
"lint": "eslint 'src/**'",
"gts": "gts check 'src/**'",
"fix": "gts fix 'src/**'",
"compile": "tsc",
"ncc": "ncc build -o ./ncc dist",
"publish": "npm publish",
"pack": "npm pack"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.11.1",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-google": "^0.14.0",
"jest": "^26.4.2",
"jest-cli": "^26.4.2",
"prettier": "^2.1.2",
"rimraf": "*",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"gts": "^3.0.3"
},
"dependencies": {
"@vercel/ncc": "^0.26.1",
"flatterbuf": "^1.1.0",
"mkdirp": "^1.0.4",
"typescript": "^5.0.0",
"yargs": "^15.3.1"
}
}