-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.6 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
{
"name": "webgme-bindings",
"version": "1.2.4",
"author": {
"name": "WebGME Development Team",
"url": "https://webgme.org"
},
"description": "WebGME API bindings for other languages than JavaScript",
"main": "index.js",
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webgme/bindings.git"
},
"keywords": [
"webgme",
"webgme-component",
"python",
"webgme-apis"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/webgme/bindings/issues"
},
"homepage": "https://github.com/webgme/bindings#webgme-bindings",
"scripts": {
"start": "node app.js",
"test": "mocha --opts ./mocha.opts",
"nyc": "nyc --reporter=html mocha --opts ./mocha.opts",
"server_test": "node tutorial_server.js",
"client_test": "node tutorial_client.js",
"update_docs_json": "./node_modules/.bin/jsdoc -c jsdoc_conf_engine.json",
"gen_api": "node ./scripts/generate_api.js",
"debugger_test": "node debugger_test.js"
},
"peerDependencies": {
"webgme-engine": "^2.25.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-istanbul": "^0.12.2",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"case": "^1.5.5",
"chai": "^3.0.0",
"ejs": "^2.6.1",
"eslint": "^5.4.0",
"jsdoc": "^3.5.5",
"jsdoc-json": "^2.0.2",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"webgme-engine": "^2.25.2"
},
"dependencies": {
"bindings": "^1.5.0",
"commander": "^11.1.0",
"q": "^1.5.1",
"zeromq": "^5.1.0"
}
}