forked from webgme/webgme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.96 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",
"version": "2.42.1",
"description": "Web-based Generic Modeling Environment",
"engines": {
"node": ">=4.0.0"
},
"homepage": "http://github.com/webgme/webgme",
"keywords": [
"webgme",
"gme",
"cooperative",
"modeling",
"editor",
"domain"
],
"repository": {
"type": "git",
"url": "http://github.com/webgme/webgme.git"
},
"bugs": {
"url": "http://github.com/webgme/webgme/issues"
},
"license": "MIT",
"dependencies": {
"bower": "1.8.8",
"q": "1.5.1",
"require-uncached": "1.0.3",
"requirejs": "2.3.5",
"webgme-engine": "2.25.2",
"webgme-user-management-page": "^0.5.0"
},
"devDependencies": {
"chai": "^4.2.0",
"jscs": "^3.0.7",
"jshint": "^2.12.0",
"karma": "^3.1.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-express-http-server": "^0.0.1",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-requirejs": "^1.1.0",
"karma-safari-launcher": "^1.0.0",
"mocha": "^5.2.0"
},
"main": "webgme",
"typings": "typings/webgme.d.ts",
"scripts": {
"start": "node app.js",
"prepublishOnly": "node ./utils/prepublish.js",
"build": "node ./utils/build/dist/build.js",
"bower": "bower install",
"postinstall": "node ./utils/postinstall.js",
"test": "node ./node_modules/mocha/bin/mocha --recursive test",
"test_ci": "node ./node_modules/mocha/bin/mocha -R dot --timeout 10000 --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",
"test_browser": "node ./node_modules/karma/bin/karma start karma.conf.js --browsers Firefox --single-run --no-auto-watch",
"tsdocs": "typedoc --out typed_docs --mode modules --includeDeclarations --target ES6 --exclude node_modules ./typings"
}
}