-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 871 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
{
"name": "flatterbuf",
"version": "1.1.0",
"main": "dist/index.js",
"author": "Meno Abels",
"license": "AFL-2.0",
"scripts": {
"clean": "gts clean",
"build": "tsc",
"test": "jest -c jest.unit.js",
"lint": "eslint 'src/**'",
"gts": "gts check 'src/**'",
"fix": "gts fix 'src/**'",
"compile": "tsc",
"publish": "npm publish",
"pack": "npm pack"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"eslint-config-google": "^0.14.0",
"node-notifier": ">=9.0.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "*",
"ts-jest": "^26.4.4",
"typescript": "^5.0.0",
"gts": "^3.0.3"
},
"dependencies": {}
}