-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.46 KB
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
{
"name": "protoc-gen-runtypes",
"version": "0.0.0",
"description": "Generato Runtypes with Protoc",
"repository": "github:simenandre/protoc-gen-runtypes",
"license": "Apache-2.0",
"main": "dist/plugin.js",
"bin": {
"protoc-gen-runtypes": "./bin/protoc-gen-runtypes"
},
"files": [
"build"
],
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage src/**/*",
"build": "tsc",
"generate:docs": "typedoc --readme none --out docs src"
},
"lint-staged": {
"src/**/*.{yaml,yml}": "prettier --write",
"src/**/*.{js,ts}": "eslint --cache --fix",
"{.eslintrc}": "prettier --write",
"*.md": "prettier --write"
},
"dependencies": {
"generate-runtypes": "^2.1.0",
"protoc-plugin": "^0.0.6"
},
"devDependencies": {
"@types/faker": "^5.5.5",
"@types/google-protobuf": "^3.15.2",
"@types/jest": "~26.0.22",
"@types/node": "~14.14.45",
"@types/protoc-plugin": "^0.0.1",
"@typescript-eslint/eslint-plugin": "~4.23.0",
"@typescript-eslint/parser": "~4.23.0",
"eslint": "~7.26.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "~24.3.5",
"faker": "^5.5.3",
"google-protobuf": "^3.17.0",
"husky": "^6.0.0",
"jest": "~26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"ts-jest": "~26.5.5",
"typedoc": "^0.20.35",
"typedoc-plugin-markdown": "^3.7.1",
"typescript": "~4.2.4"
}
}