Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: third_party/grpc/templates/package.json.template

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 %YAML 1.2
2 --- |
3 {
4 "name": "grpc",
5 "version": "${settings.node_version}",
6 "author": "Google Inc.",
7 "description": "gRPC Library for Node",
8 "homepage": "http://www.grpc.io/",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/grpc/grpc.git"
12 },
13 "bugs": "https://github.com/grpc/grpc/issues",
14 "contributors": [
15 {
16 "name": "Michael Lumish",
17 "email": "mlumish@google.com"
18 }
19 ],
20 "directories": {
21 "lib": "src/node/src"
22 },
23 "scripts": {
24 "lint": "node ./node_modules/jshint/bin/jshint src/node/src src/node/test src/node/interop src/node/index.js",
25 "test": "./node_modules/.bin/mocha src/node/test && npm run-script lint",
26 "gen_docs": "./node_modules/.bin/jsdoc -c src/node/jsdoc_conf.json",
27 "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha src/node/test",
28 "install": "./node_modules/.bin/node-pre-gyp install --fallback-to-build"
29 },
30 "bundledDependencies": ["node-pre-gyp"],
31 "dependencies": {
32 "lodash": "^3.9.3",
33 "nan": "^2.0.0",
34 "protobufjs": "^4.0.0"
35 },
36 "devDependencies": {
37 "async": "^1.5.0",
38 "google-auth-library": "^0.9.2",
39 "istanbul": "^0.3.21",
40 "jsdoc": "^3.3.2",
41 "jshint": "^2.5.0",
42 "minimist": "^1.1.0",
43 "mocha": "^2.3.4",
44 "mocha-jenkins-reporter": "^0.1.9",
45 "mustache": "^2.0.0",
46 "poisson-process": "^0.2.1"
47 },
48 "engines": {
49 "node": ">=0.12.0"
50 },
51 "binary": {
52 "module_name": "grpc_node",
53 "module_path": "./build/Release/",
54 "host": "https://storage.googleapis.com/",
55 "remote_path": "grpc-precompiled-binaries/node/{name}/v{version}",
56 "package_name": "{node_abi}-{platform}-{arch}.tar.gz",
57 "module_path": "src/node/extension_binary"
58 },
59 "files": [
60 "LICENSE",
61 "src/node/README.md",
62 "src/node/health_check",
63 "src/proto",
64 "etc",
65 % for module in node_modules:
66 % for file in module.headers + module.src + module.js:
67 "${file}",
68 % endfor
69 % for dep in module.transitive_deps:
70 % for lib in libs:
71 % if lib.name == dep:
72 % for file in lib.get('public_headers', []) + lib.headers + lib.src:
73 "${file}",
74 % endfor
75 % endif
76 % endfor
77 % endfor
78 % endfor
79 "binding.gyp"
80 ],
81 "main": "src/node/index.js",
82 "license": "BSD-3-Clause"
83 }
OLDNEW
« no previous file with comments | « third_party/grpc/templates/grpc.gemspec.template ('k') | third_party/grpc/templates/package.xml.template » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698