-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
{
"name": "mtgatool-shared",
"version": "2.2.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"eslint:fix": "eslint --fix . --ext .ts,.tsx",
"proto:model": "node node_modules/protobufjs/bin/pbjs src/proto/messages.proto > src/proto/model.json",
"proto:greTypes": "node src/proto/proto2typescript/index.js",
"proto:eslint": "eslint src/types/greTypes.ts --fix",
"proto": "npm-run-all proto:model proto:greTypes proto:eslint",
"build": "tsc",
"publish": "np",
"prepublish": "npm run build",
"jest:clear": "jest --clearCache",
"jest:watch": "jest --watch",
"test": "jest src/"
},
"keywords": [],
"author": "Manuel Etchegaray",
"license": "ISC",
"dependencies": {
"http": "0.0.1-security",
"https": "^1.0.0",
"lodash": "^4.17.20",
"mathjs": "^7.2.0",
"np": "^7.5.0"
},
"devDependencies": {
"@types/bytebuffer": "^5.0.41",
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.161",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"proto2typescript": "^2.2.0",
"protobufjs": "~5.0.3",
"ts-jest": "^26.3.0",
"typescript": "^3.9.7"
},
"watch": {
"build": {}
}
}