-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
104 lines (104 loc) · 3.5 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@nebula-contrib/nebula-nodejs",
"version": "3.0.3",
"description": "This repository provides Nebula client API in Nodejs.",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production babel-node --max-old-space-size=7168 ./tools/run build",
"clean": "babel-node ./tools/run clean",
"test": "babel-node ./tools/run test",
"lint": "eslint",
"coverage": "babel-node ./tools/run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nebula-contrib/nebula-node.git"
},
"author": "Wu Jian Ping",
"license": "Apache 2.0 License",
"bugs": {
"url": "https://github.com/nebula-contrib/nebula-node/issues"
},
"homepage": "https://github.com/nebula-contrib/nebula-node#readme",
"dependencies": {
"bindings": "^1.5.0",
"browser-or-node": "^1.2.1",
"isomorphic-ws": "^4.0.1",
"lodash": "^4.17.21",
"node-int64": "^0.4.0",
"q": "^1.5.0",
"ws": "^5.2.2"
},
"keywords": [
"nebula",
"nodejs nebula sdk"
],
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-proposal-do-expressions": "^7.14.5",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-bind": "^7.14.5",
"@babel/plugin-proposal-function-sent": "^7.14.5",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-pipeline-operator": "^7.14.5",
"@babel/plugin-proposal-throw-expressions": "^7.14.5",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.18",
"@types/esm": "^3.2.0",
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.170",
"@types/mocha": "^8.2.2",
"@types/node": "^14.17.3",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"assert": "^2.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"chai": "^4.3.4",
"chalk": "^4.1.1",
"core-js": "^2.6.10",
"cowsay": "^1.5.0",
"cross-env": "^7.0.3",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^32.3.4",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"esm": "^3.2.25",
"mkdirp": "^0.5.1",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"open": "^7.4.2",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "4.1.5",
"which": "^2.0.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}