-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.74 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
{
"name": "webgme-cli",
"version": "2.8.5",
"description": "Command line interface for managing WebGME apps",
"main": "index.js",
"bin": {
"webgme": "./bin/webgme"
},
"directories": {
"test": "test"
},
"scripts": {
"test-win": "node node_modules/mocha/bin/mocha test/*.js",
"test-basic": "mkdir test-tmp; node node_modules/mocha/bin/mocha test/*.js",
"test": "npm run test-basic && node node_modules/mocha/bin/mocha test/plugins/{RemoveFrom,AddTo}Plugin.spec.js",
"test-cover": "mkdir test-tmp; node node_modules/istanbul/lib/cli.js --hook-run-in-context cover node_modules/mocha/bin/_mocha -- -R spec test/*.js",
"build-completion": "node bin/completion.js",
"postinstall": "node bin/install.js",
"test-plugin": "node node_modules/mocha/bin/mocha test/plugins/{RemoveFrom,AddTo}Plugin.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webgme/webgme-cli.git"
},
"author": "Brian Broll",
"license": "MIT",
"bugs": {
"url": "https://github.com/webgme/webgme-cli/issues"
},
"homepage": "https://github.com/webgme/webgme-cli#readme",
"dependencies": {
"change-case": "^2.3.0",
"commander": "brollb/commander.js",
"deep-readdir": "^0.2.0",
"exists-file": "^1.0.0",
"fs-extra": "^0.24.0",
"lodash": "^4.17.10",
"mkdirp": "^0.5.1",
"mongo-uri": "^0.1.2",
"nop": "^1.0.0",
"plural": "^0.1.6",
"q": "^1.4.1",
"ramda": "^0.15.1",
"requirejs": "^2.1.18",
"rimraf": "^2.4.0",
"webgme-engine": "^2.23.0"
},
"devDependencies": {
"chai": "^3.0.0",
"ejs": "^2.3.4",
"esprima": "^2.6.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.5",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"webgme": "^2.30.1"
}
}