-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
72 lines (72 loc) · 1.73 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
{
"name": "druid-console",
"version": "0.0.1",
"license": "Apache-2.0",
"author": "Tarek Rached <[email protected]>",
"description": "Druid Console",
"contributors": [
{
"name": "Tarek Rached",
"email": "[email protected]"
}
],
"engines": {
"node": "v8.9.4"
},
"repository": {
"type": "git",
"url": "https://github.com/druid-io/druid-console.git"
},
"readmeFilename": "README.md",
"scripts": {
"test": "node_modules/karma/bin/karma start test/karma.conf.ci.js"
},
"dependencies": {
"body-parser": "^1.18.2",
"bower": "~1.8.2",
"coffeescript": "~2.1.1",
"compression": "^1.7.1",
"cookie-parser": "^1.4.3",
"express": "~4.16.2",
"http-proxy": "~1.16.2",
"locators": "~2.0.2",
"method-override": "^2.3.10",
"morgan": "^1.9.0",
"node-zookeeper-client": "~0.2.2",
"nodemon": "~1.14.11",
"request": "~2.83.0"
},
"devDependencies": {
"browserify": "~15.1.0",
"browserify-shim": "~3.8.14",
"coffeeify": "~3.0.1",
"deep-diff": "~0.3.8",
"gulp": "~3.9.1",
"gulp-concat": "~2.6.1",
"gulp-sass": "~3.1.0",
"jasmine-core": "^2.8.0",
"karma": "~1.7.1",
"karma-browserify": "~5.1.3",
"karma-chrome-launcher": "~2.2.0",
"karma-coffee-preprocessor": "~1.0.1",
"karma-coverage": "~1.1.1",
"karma-jasmine": "~1.1.1",
"karma-junit-reporter": "^1.2.0",
"karma-requirejs": "~1.1.0",
"node-sass": "~4.7.2",
"requirejs": "~2.3.5",
"vinyl-source-stream": "~2.0.0",
"watchify": "~3.9.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"jquery": "./bower_components/jQuery/dist/jquery.min.js"
},
"browserify-shim": {
"jquery": "$"
}
}