-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "google-protobuf",
"version": "3.21.2",
"description": "Protocol Buffers for JavaScript",
"main": "google-protobuf.js",
"files": [
"google/protobuf/*_pb.js",
"google/protobuf/compiler/*_pb.js",
"google-protobuf.js",
"LICENSE.md",
"LICENSE-asserts.md",
"package.json",
"README.md"
],
"devDependencies": {
"glob": "~7.1.4",
"google-closure-compiler": "~20190819.0.0",
"google-closure-deps": "^20210406.0.0",
"google-closure-library": "~20200315.0.0",
"google-protobuf": "^3.21.2",
"gulp": "~4.0.2",
"jasmine": "~3.5.0",
"jest": "29.7.0"
},
"scripts": {
"build": "node ./node_modules/gulp/bin/gulp.js dist",
"test": "node ./node_modules/gulp/bin/gulp.js test",
"test:jest": "jest ./test-jest --runInBand",
"clean": "node ./node_modules/gulp/bin/gulp.js clean"
},
"repository": {
"type": "git",
"url": "https://github.com/protocolbuffers/protobuf-javascript"
},
"author": "Google Protocol Buffers Team",
"license": "(BSD-3-Clause AND Apache-2.0)"
}