blob: b8ce92eb7ace2c8ac64519bf2f0abc51f33e2a48 [file] [log] [blame]
murgatroid990bb6fcf2015-12-21 16:11:27 -08001%YAML 1.2
2--- |
3 {
4 "name": "grpc",
murgatroid99b0162c42016-02-08 16:06:12 -08005 "version": "${settings.node_version}",
murgatroid990bb6fcf2015-12-21 16:11:27 -08006 "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": {
murgatroid9918997432016-04-20 10:52:31 -070024 "lint": "node ./node_modules/jshint/bin/jshint src/node/src src/node/test src/node/interop src/node/index.js --exclude-path=src/node/.jshintignore",
murgatroid990bb6fcf2015-12-21 16:11:27 -080025 "test": "./node_modules/.bin/mocha src/node/test && npm run-script lint",
murgatroid99eaf79642016-11-01 11:05:02 -070026 "electron-build": "./node_modules/.bin/node-pre-gyp configure build --runtime=electron --disturl=https://atom.io/download/atom-shell",
murgatroid990bb6fcf2015-12-21 16:11:27 -080027 "gen_docs": "./node_modules/.bin/jsdoc -c src/node/jsdoc_conf.json",
murgatroid99e190f352016-01-20 13:52:08 -080028 "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha src/node/test",
murgatroid999ab6d0c2016-02-12 13:36:39 -080029 "install": "./node_modules/.bin/node-pre-gyp install --fallback-to-build"
murgatroid990bb6fcf2015-12-21 16:11:27 -080030 },
murgatroid99ab604b62016-02-11 12:59:37 -080031 "bundledDependencies": ["node-pre-gyp"],
murgatroid990bb6fcf2015-12-21 16:11:27 -080032 "dependencies": {
murgatroid999a0c7412016-03-21 15:50:39 -070033 "arguejs": "^0.2.3",
murgatroid990bb6fcf2015-12-21 16:11:27 -080034 "lodash": "^3.9.3",
35 "nan": "^2.0.0",
36 "protobufjs": "^4.0.0"
37 },
38 "devDependencies": {
murgatroid995e7a9fe2016-01-07 13:33:39 -080039 "async": "^1.5.0",
murgatroid99eaf79642016-11-01 11:05:02 -070040 "electron-mocha": "^3.1.1",
murgatroid990bb6fcf2015-12-21 16:11:27 -080041 "google-auth-library": "^0.9.2",
murgatroid99fcb52712016-07-29 10:44:01 -070042 "google-protobuf": "^3.0.0",
murgatroid990bb6fcf2015-12-21 16:11:27 -080043 "istanbul": "^0.3.21",
44 "jsdoc": "^3.3.2",
45 "jshint": "^2.5.0",
46 "minimist": "^1.1.0",
murgatroid9917e781a2016-01-04 15:24:53 -080047 "mocha": "^2.3.4",
murgatroid990bb6fcf2015-12-21 16:11:27 -080048 "mocha-jenkins-reporter": "^0.1.9",
49 "mustache": "^2.0.0",
50 "poisson-process": "^0.2.1"
51 },
52 "engines": {
murgatroid998c686e72016-02-10 10:59:22 -080053 "node": ">=0.12.0"
murgatroid990bb6fcf2015-12-21 16:11:27 -080054 },
murgatroid997905a722016-01-15 15:28:22 -080055 "binary": {
56 "module_name": "grpc_node",
57 "module_path": "./build/Release/",
murgatroid99e190f352016-01-20 13:52:08 -080058 "host": "https://storage.googleapis.com/",
murgatroid99a3508e32016-01-20 13:58:24 -080059 "remote_path": "grpc-precompiled-binaries/node/{name}/v{version}",
murgatroid99e190f352016-01-20 13:52:08 -080060 "package_name": "{node_abi}-{platform}-{arch}.tar.gz",
61 "module_path": "src/node/extension_binary"
murgatroid997905a722016-01-15 15:28:22 -080062 },
murgatroid990bb6fcf2015-12-21 16:11:27 -080063 "files": [
64 "LICENSE",
65 "src/node/README.md",
murgatroid990bb6fcf2015-12-21 16:11:27 -080066 "src/proto",
67 "etc",
murgatroid998c0b4d72016-04-12 13:57:45 -070068 "src/node/index.js",
69 "src/node/src",
70 "src/node/ext",
71 "include/grpc",
72 "src/core",
murgatroid993b3069d2016-05-11 08:43:01 -070073 "src/boringssl",
74 "src/zlib",
murgatroid998c0b4d72016-04-12 13:57:45 -070075 "third_party/nanopb",
76 "third_party/zlib",
77 "third_party/boringssl",
murgatroid990bb6fcf2015-12-21 16:11:27 -080078 "binding.gyp"
79 ],
80 "main": "src/node/index.js",
murgatroid9918997432016-04-20 10:52:31 -070081 "license": "BSD-3-Clause",
82 "jshintConfig" : {
83 "bitwise": true,
84 "curly": true,
85 "eqeqeq": true,
86 "esnext": true,
87 "freeze": true,
88 "immed": true,
89 "indent": 2,
90 "latedef": "nofunc",
91 "maxlen": 80,
92 "mocha": true,
93 "newcap": true,
94 "node": true,
95 "noarg": true,
96 "quotmark": "single",
97 "strict": true,
98 "trailing": true,
99 "undef": true,
100 "unused": "vars"
101 }
murgatroid990bb6fcf2015-12-21 16:11:27 -0800102 }