-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.78 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
56
57
58
59
60
61
62
{
"name": "protocol-buffers-dts",
"version": "1.0.0",
"description": "Creates d.ts files for javascript files generated with a protocol-buffers.",
"main": "index.js",
"scripts": {
"test": "npm run build-example && npm run lint && npm run unit",
"lint": "eslint .",
"unit": "ts-node node_modules/fresh-tape/bin/fresh-tape test.ts",
"build-example": "protocol-buffers example.proto -o example.js && bin/protocol-buffers-dts example.proto -o example.d.ts"
},
"bin": {
"protocol-buffers-dts": "bin/protocol-buffers-dts"
},
"eslintConfig": {
"extends": "standard-with-typescript",
"parserOptions": {
"project": "./tsconfig.json"
}
},
"eslintIgnore": [
"node_modules/*",
"example.js"
],
"keywords": [
"typescript",
"protocol-buffers",
"protobuf",
"schema",
"dts",
"definition",
"generator"
],
"author": "Martin Heidegger <[email protected]>",
"license": "MIT",
"dependencies": {
"protocol-buffers-schema": "^3.5.1"
},
"devDependencies": {
"@types/protocol-buffers-schema": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"fresh-tape": "^5.1.1",
"protocol-buffers": "^4.2.0",
"standard": "^16.0.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/consento-org/protocol-buffers-dts.git"
},
"bugs": {
"url": "https://github.com/consento-org/protocol-buffers-dts/issues"
},
"homepage": "https://github.com/consento-org/protocol-buffers-dts#readme"
}