-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.88 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@apollo/protobufjs",
"version": "1.0.3",
"versionScheme": "~",
"description": "Protocol Buffers for JavaScript (& TypeScript).",
"author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/apollographql/protobuf.js.git"
},
"bugs": "https://github.com/apollographql/protobuf.js/issues",
"homepage": "https://github.com/apollographql/protobuf.js",
"keywords": [
"protobuf",
"protocol-buffers",
"serialization",
"typescript"
],
"main": "index.js",
"types": "index.d.ts",
"bin": {
"apollo-pbjs": "bin/pbjs",
"apollo-pbts": "bin/pbts"
},
"scripts": {
"bench": "node bench",
"build": "gulp --gulpfile scripts/gulpfile.js",
"changelog": "node scripts/changelog -w",
"coverage": "istanbul --config=config/istanbul.json cover node_modules/tape/bin/tape tests/*.js tests/node/*.js",
"docs": "jsdoc -c config/jsdoc.json -R README.md --verbose --pedantic",
"lint": "eslint **/*.js -c config/eslint.json && tslint **/*.d.ts -e **/node_modules/** -t stylish -c config/tslint.json",
"pages": "node scripts/pages",
"prepublish": "node scripts/prepublish",
"postinstall": "node scripts/postinstall",
"prof": "node bench/prof",
"test": "tape -r ./lib/tape-adapter tests/*.js tests/node/*.js",
"test-types": "tsc tests/comp_typescript.ts --lib es2015 --strictNullChecks --experimentalDecorators --emitDecoratorMetadata && tsc tests/data/test.js.ts --lib es2015 --noEmit --strictNullChecks && tsc tests/data/rpc.ts --lib es2015 --noEmit --strictNullChecks",
"types": "node bin/pbts --main --global protobuf --out index.d.ts src/ lib/aspromise/index.js lib/base64/index.js lib/codegen/index.js lib/eventemitter/index.js lib/float/index.js lib/fetch/index.js lib/inquire/index.js lib/path/index.js lib/pool/index.js lib/utf8/index.js && npm run test-types",
"make": "npm run test && npm run types && npm run build && npm run lint",
"release": "npm run make && npm run changelog"
},
"dependencies": {
"@protobufjs/aspromise": "^1.1.2",
"@protobufjs/base64": "^1.1.2",
"@protobufjs/codegen": "^2.0.4",
"@protobufjs/eventemitter": "^1.1.0",
"@protobufjs/fetch": "^1.1.0",
"@protobufjs/float": "^1.0.2",
"@protobufjs/inquire": "^1.1.0",
"@protobufjs/path": "^1.1.2",
"@protobufjs/pool": "^1.1.0",
"@protobufjs/utf8": "^1.1.0",
"@types/long": "^4.0.0",
"@types/node": "^10.1.0",
"long": "^4.0.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "^16.2.3",
"browserify-wrap": "^1.0.2",
"bundle-collapser": "^1.3.0",
"chalk": "^2.4.1",
"escodegen": "^1.9.1",
"eslint": "^4.19.1",
"espree": "^3.5.4",
"estraverse": "^4.2.0",
"gh-pages": "^1.2.0",
"git-raw-commits": "^1.3.6",
"git-semver-tags": "^1.3.6",
"glob": "^7.1.2",
"google-protobuf": "^3.5.0",
"gulp": "^4.0.0",
"gulp-header": "^2.0.5",
"gulp-if": "^2.0.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.0",
"istanbul": "^0.4.5",
"jaguarjs-jsdoc": "github:dcodeIO/jaguarjs-jsdoc",
"jsdoc": "^3.6.3",
"minimist": "^1.2.0",
"reflect-metadata": "^0.1.12",
"semver": "^5.5.0",
"tape": "^4.9.0",
"tmp": "0.0.33",
"tslint": "^5.10.0",
"typescript": "^2.8.3",
"uglify-js": "^3.3.25",
"vinyl-buffer": "^1.0.1",
"vinyl-fs": "^3.0.3",
"vinyl-source-stream": "^2.0.0"
},
"cliDependencies": [
"semver",
"chalk",
"glob",
"jsdoc",
"minimist",
"tmp",
"uglify-js",
"espree",
"escodegen",
"estraverse"
],
"files": [
"index.js",
"index.d.ts",
"light.d.ts",
"light.js",
"minimal.d.ts",
"minimal.js",
"package-lock.json",
"tsconfig.json",
"scripts/postinstall.js",
"bin/**",
"cli/**",
"dist/**",
"ext/**",
"google/**",
"src/**"
]
}