-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "webgme-constraint-checker",
"bin": {
"webgme-constraint-checker": "./bin/webgme-constraint-checker"
},
"author": {
"name": "WebGME Development Team",
"url": "https://webgme.org"
},
"main": "./src/webhooks/ConstraintChecker/ConstraintChecker.js",
"description": "Webhook and ui-pieces for continous evaluation of constraints.",
"scripts": {
"start": "node app.js",
"hook": "node ./src/webhooks/ConstraintChecker/bin.js",
"test": "node ./node_modules/mocha/bin/mocha --recursive test",
"test_cover": "node ./node_modules/istanbul/lib/cli.js --hook-run-in-context cover node_modules/mocha/bin/_mocha -- -R spec --timeout 10000 --recursive test"
},
"repository": {
"type": "git",
"url": "https://github.com/webgme/constraint-checker.git"
},
"version": "2.0.0",
"keywords": [
"webgme",
"webgme-component",
"constraint-checking"
],
"peerDependencies": {
"webgme": "^2.18.0"
},
"devDependencies": {
"chai": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^2.2.5",
"rimraf": "^2.4.0"
},
"dependencies": {
"body-parser": "^1.18.3",
"commander": "^2.15.1",
"express": "^4.16.3",
"mongodb": "^2.2.19",
"q": "^1.5.1",
"superagent": "^3.8.3"
}
}