-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.39 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
{
"name": "gc-ajax-plugin",
"version": "0.1.5",
"description": "plugin for gremlin-console that makes the console connect via http rather than ws",
"main": "lib/index.js",
"scripts": {
"build": "babel ./src -d lib",
"build:all": "npm run build && npm run build:umd && npm run build:min",
"build:docs": "mr-doc --source src --output api --name gc-graphson-text-plugin -p --theme mr-doc-theme-cayman",
"build:umd": "NODE_ENV=production webpack src/index.js umd/gc-ajax-plugin.js --display-error-details --optimize-occurence-order --optimize-dedupe",
"build:min": "NODE_ENV=production webpack -p src/index.js umd/gc-ajax-plugin.min.js --optimize-occurence-order --optimize-dedupe",
"build:watch": "npm run build -- --watch",
"test": "karma start karma.conf.js --single-run --reporters mocha",
"test:debug": "karma start karma.conf.js --debug --reporters mocha",
"test:coverage": "karma start karma.conf.js --single-run && rm -rf coverage"
},
"dependencies": {
"babel-cli": "~6.6.5",
"babel-core": "~6.7.2",
"babel-loader": "~6.2.4",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-preset-es2015": "~6.6.0",
"babel-preset-stage-2": "~6.5.0",
"babel-register": "~6.7.2",
"gremlin": "^2.2.0",
"gremlin-console": "^0.9.9",
"highland": "^2.7.3",
"jquery": "~2.2.1"
},
"devDependencies": {
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"isparta-loader": "^2.0.0",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chai-jquery": "^1.0.0",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-coveralls": "^1.1.2",
"karma-express-http-server": "0.0.1",
"karma-firefox-launcher": "^0.1.7",
"karma-html2js-preprocessor": "^0.1.0",
"karma-jquery": "^0.1.0",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"mr-doc": "^3.2.1",
"mr-doc-theme-cayman": "^1.4.0",
"phantomjs-prebuilt": "^2.1.7",
"sinon": "^1.17.3",
"webpack": "~1.12.14"
},
"keywords": [
"gremlin",
"console",
"plugin"
],
"author": "Dylan Millikin <dmill@apache.org>",
"license": "Apache-2.0",
"homepage": "https://github.com/PommeVerte/gc-ajax-plugin.git"
}