-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 loc) · 2.07 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": "gremlin-console",
"version": "0.9.9",
"description": "Console for gremlin-server",
"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 gremlin-console -p --theme mr-doc-theme-cayman",
"build:umd": "NODE_ENV=production webpack src/index.js umd/gremlin-console.js --optimize-occurence-order --optimize-dedupe && cp -r static/* umd/",
"build:min": "NODE_ENV=production webpack -p src/index.js umd/gremlin-console.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 --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",
"events": "^1.1.0",
"gremlin": "^2.2.0",
"jquery": "~2.2.1"
},
"devDependencies": {
"chai": "^3.5.0",
"isparta-loader": "^2.0.0",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.5.5",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^0.1.7",
"karma-html2js-preprocessor": "^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"
],
"author": "Dylan Millikin <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/PommeVerte/gremlin-console-js"
}