-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
87 lines (87 loc) · 3.28 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
{
"name": "webgme-cyphy",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/webgme/webgme-cyphy"
},
"license": "MIT",
"dependencies": {
"webgme": "0.7.0",
"requirejs": "=2.1.11",
"winreg": "=0.0.12",
"ng-gme": "=0.0.2"
},
"devDependencies": {
"angular-markdown-directive": "^0.3.0",
"angular-sanitize": "0.0.1",
"bower": ">=1.3.9",
"browserify": "^5.10.1",
"browserify-shim": "^3.7.0",
"chai": ">=1.9.0",
"cheerio": "^0.18.0",
"code-mirror": "~3.22.0",
"connect-livereload": "^0.4.0",
"cssify": "~0.6.0",
"express": "^4.8.6",
"gulp": "^3.8.7",
"gulp-angular-templatecache": "^1.3.0",
"gulp-buffer": "0.0.2",
"gulp-clean": "^0.3.1",
"gulp-concat": "^2.3.4",
"gulp-js-prettify": "^0.1.0",
"gulp-jshint": "^1.8.4",
"gulp-livereload": "^2.1.1",
"gulp-prettify": "^0.3.0",
"gulp-rename": "^1.2.0",
"gulp-sass": "^0.7.3",
"gulp-shell": "^0.2.11",
"gulp-sourcemaps": "^1.3.0",
"gulp-svgmin": "^1.1.0",
"gulp-svgstore": "^5.0.0",
"gulp-template": "^3.0.0",
"istanbul": ">=0.2.6",
"jslint": ">=0.3.0",
"mocha": ">=1.17.1",
"process": "^0.7.0",
"q": "^1.1.2",
"run-sequence": "^0.3.6",
"svgo": "^0.5.0",
"tiny-lr": "^0.1.1",
"vinyl-source-stream": "^1.0.0",
"yargs": "^1.3.1"
},
"browserify": {
"transform": [
"browserify-shim",
"cssify"
]
},
"browser": {
"showdown": "./vendor/showdown_for_browserify.js",
"codemirrorCSS": "./bower_components/codemirror/lib/codemirror.css",
"angular-ui-codemirror": "./bower_components/angular-ui-codemirror/ui-codemirror.js",
"chance": "./bower_components/chance/chance.js"
},
"browserify-shim": {
"showdown": "Showdown"
},
"engines": {
"node": ">=6.17.1"
},
"config": {},
"scripts": {
"start": "node app.js",
"test": "node node_modules/istanbul/lib/cli.js --hook-run-in-context test node_modules/mocha/bin/_mocha -- -R spec --recursive test/unit",
"test_win": "node_modules\\.bin\\istanbul.cmd --hook-run-in-context test node_modules\\mocha\\bin\\_mocha -- -R spec --recursive test/unit",
"test_cover": "node node_modules/istanbul/lib/cli.js --hook-run-in-context cover node_modules/mocha/bin/_mocha -- -R spec --recursive test/unit",
"test_cover_win": "node_modules\\.bin\\istanbul.cmd --hook-run-in-context cover node_modules\\mocha\\bin\\_mocha -- -R spec --recursive test/unit",
"//": "functional tests require the app to be running",
"test_functional": "node node_modules/istanbul/lib/cli.js --hook-run-in-context test node_modules/mocha/bin/_mocha -- -R spec --recursive test/functional",
"test_functional_cover": "node node_modules/istanbul/lib/cli.js --hook-run-in-context cover node_modules/mocha/bin/_mocha -- -R spec --recursive test/functional",
"test_all": "node node_modules/istanbul/lib/cli.js --hook-run-in-context test node_modules/mocha/bin/_mocha -- -R spec --recursive test/unit test/functional",
"test_all_cover": "node node_modules/istanbul/lib/cli.js --hook-run-in-context cover node_modules/mocha/bin/_mocha -- -R spec --recursive test/unit test/functional",
"jsdoc": "node_modules/.bin/jsdoc src -r",
"plugin": "node node_modules/webgme/bin/run_plugin.js -c config.json"
}
}