This repository has been archived by the owner on May 26, 2022. It is now read-only.
forked from apache/thrift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.85 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
{
"name": "thrift",
"description": "node.js bindings for the Apache Thrift RPC system",
"homepage": "http://thrift.apache.org/",
"repository": {
"type": "git",
"url": "https://github.com/apache/thrift.git"
},
"version": "0.15.0",
"author": {
"name": "Apache Thrift Developers",
"email": "[email protected]",
"url": "http://thrift.apache.org"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"mail": "[email protected]",
"url": "https://issues.apache.org/jira/browse/THRIFT"
},
"files": [
"lib/nodejs/lib/thrift",
"lib/nodejs/README.md"
],
"directories": {
"lib": "./lib/nodejs/lib/thrift"
},
"browser": "./lib/nodejs/lib/thrift/browser.js",
"main": "./lib/nodejs/lib/thrift",
"engines": {
"node": ">= 10.18.0"
},
"dependencies": {
"browser-or-node": "^1.2.1",
"isomorphic-ws": "^4.0.1",
"node-int64": "^0.4.0",
"q": "^1.5.0",
"ws": "^5.2.2"
},
"devDependencies": {
"@types/node": "^10.12.6",
"@types/node-int64": "^0.4.29",
"@types/q": "^1.5.1",
"buffer-equals": "^1.0.4",
"commander": "^2.14.1",
"connect": "^3.6.6",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"html-validator-cli": "^4.1.4",
"nyc": "^15.0.0",
"jsdoc": "^3.6.3",
"json-int64": "^1.0.2",
"prettier": "^1.14.3",
"tape": "^4.9.0",
"typescript": "^3.1.6",
"utf-8-validate": "^5.0.0"
},
"scripts": {
"cover": "lib/nodejs/test/testAll.sh COVER",
"test": "lib/nodejs/test/testAll.sh",
"test-ts": "lib/nodets/test/testAll.sh",
"prettier": "prettier --write '**/*.js'",
"lint": "eslint lib/nodejs/. --ext .js",
"lint-tests": "eslint lib/nodejs/test/. --ext .js"
}
}