blob: 6d548d7afbf36f960116e378fce1ab560f1a877d [file] [log] [blame]
T Jake Luciani0c124bb2011-01-08 03:49:16 +00001{
2 "name": "thrift",
Roger Meierb34b83e2011-04-27 20:14:33 +00003 "description": "node.js bindings for the Apache Thrift RPC system",
4 "homepage": "http://thrift.apache.org/",
Randy Abernethy2e091f62014-11-15 23:05:22 -08005 "repository": {
6 "type": "git",
Robert Lua1390822018-12-27 23:57:35 +08007 "url": "https://github.com/apache/thrift.git"
Randy Abernethy2e091f62014-11-15 23:05:22 -08008 },
Jake Farrell6fcecd42012-10-11 20:34:25 +00009 "version": "1.0.0-dev",
Randy Abernethy2e091f62014-11-15 23:05:22 -080010 "author": {
11 "name": "Apache Thrift Developers",
12 "email": "dev@thrift.apache.org",
13 "url": "http://thrift.apache.org"
14 },
Jens Geyerf2c9f1b2015-09-25 23:00:30 +020015 "license": "Apache-2.0",
Randy Abernethy2e091f62014-11-15 23:05:22 -080016 "licenses": [
17 {
18 "type": "Apache-2.0",
19 "url": "http://www.apache.org/licenses/LICENSE-2.0"
20 }
21 ],
22 "bugs": {
23 "mail": "dev@thrift.apache.org",
24 "url": "https://issues.apache.org/jira/browse/THRIFT"
25 },
Jan Kremsf2648842015-10-30 13:32:29 -070026 "files": [
27 "lib/nodejs/lib/thrift",
28 "lib/nodejs/README.md"
29 ],
Randy Abernethy2e091f62014-11-15 23:05:22 -080030 "directories": {
Roger Meier1abd7462015-02-02 21:59:38 +010031 "lib": "./lib/nodejs/lib/thrift"
Randy Abernethy2e091f62014-11-15 23:05:22 -080032 },
Roger Meier1abd7462015-02-02 21:59:38 +010033 "main": "./lib/nodejs/lib/thrift",
Randy Abernethy2e091f62014-11-15 23:05:22 -080034 "engines": {
James E. King, III699b5bc2017-09-14 08:07:08 -070035 "node": ">= 4.1.0"
Randy Abernethy2e091f62014-11-15 23:05:22 -080036 },
Henrique Mendoncad407b2d2012-10-22 21:06:14 +000037 "dependencies": {
James E. King, III699b5bc2017-09-14 08:07:08 -070038 "node-int64": "^0.4.0",
39 "q": "^1.5.0",
James E. King IIIa37feaf2018-03-06 15:11:01 -050040 "ws": "^5.0.0"
henrique452dd5b2013-08-27 15:37:01 +020041 },
42 "devDependencies": {
James E. King, III699b5bc2017-09-14 08:07:08 -070043 "buffer-equals": "^1.0.4",
James E. King IIIa37feaf2018-03-06 15:11:01 -050044 "commander": "^2.14.1",
45 "connect": "^3.6.6",
bforbisda1169d2018-10-28 11:27:38 -040046 "eslint": "^5.7.0",
47 "eslint-config-prettier": "^3.1.0",
48 "eslint-plugin-prettier": "^3.0.0",
James E. King, III699b5bc2017-09-14 08:07:08 -070049 "istanbul": "^0.4.5",
James E. King IIIa37feaf2018-03-06 15:11:01 -050050 "jsdoc": "^3.5.5",
bforbisda1169d2018-10-28 11:27:38 -040051 "prettier": "^1.14.3",
James E. King IIIa37feaf2018-03-06 15:11:01 -050052 "tape": "^4.9.0",
wilfrem2c69b5a2015-04-20 19:24:50 +090053 "utf-8-validate": "^4.0.0",
54 "typescript": "^3.1.6",
55 "@types/node": "^10.12.6",
56 "@types/q": "^1.5.1"
Roger Meier8909cbd2014-01-26 11:44:27 +010057 },
58 "scripts": {
Randy Abernethy8e731372015-02-03 00:04:40 -080059 "cover": "lib/nodejs/test/testAll.sh COVER",
Filip Spiridonovb2557902018-04-17 20:18:29 -070060 "test": "lib/nodejs/test/testAll.sh",
wilfrem2c69b5a2015-04-20 19:24:50 +090061 "test-ts": "lib/nodets/test/testAll.sh",
bforbisda1169d2018-10-28 11:27:38 -040062 "prettier": "prettier --write '**/*.js'",
63 "lint": "eslint lib/nodejs/. --ext .js",
64 "lint-tests": "eslint lib/nodejs/test/. --ext .js"
Henrique Mendoncad407b2d2012-10-22 21:06:14 +000065 }
T Jake Luciani0c124bb2011-01-08 03:49:16 +000066}