-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.17 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
{
"name": "DIVE",
"version": "0.0.0",
"description": "Automating the process of building web-based interactive visualizations.",
"author": "Kevin Zeng Hu",
"main": "gulpfile.js",
"repository": {
"type": "git",
"url": "http://github.com/MacroConnections/DIVE"
},
"dependencies": {
"angular": "1.3.x",
"angular-animate": "1.3.x",
"angular-aria": "1.3.x",
"angular-cookies": "1.3.x",
"angular-file-upload": "^2.0.0",
"angular-local-storage": "^0.1.5",
"angular-material": "^0.8.3",
"angular-touch": "^1.3.14",
"angular-ui-router": "^0.2.11",
"angular-uuid": "0.0.2",
"crypto-js": "^3.1.4",
"d3": "^3.4.13",
"jquery": "^2.1.1",
"metrics-graphics": "^2.3.0",
"underscore": "^1.7.0"
},
"license": "ISC",
"devDependencies": {
"angular-messages": "^1.3.15",
"browserify-shim": "^3.8.0",
"coffee-script": "^1.9.3",
"coffeeify": "^0.7.0",
"connect-livereload": "^0.5.3",
"connect-modrewrite": "^0.7.11",
"d3plus": "^1.6.3",
"express": "^4.12.3",
"gulp": "^3.8.9",
"gulp-autoprefixer": "^1.0.1",
"gulp-browserify": "^0.5.0",
"gulp-cached": "^1.0.4",
"gulp-coffee": "^2.3.1",
"gulp-concat": "^2.4.1",
"gulp-jade": "^1.0.1",
"gulp-jshint": "^1.10.0",
"gulp-livereload": "^3.8.0",
"gulp-ng-annotate": "^0.3.3",
"gulp-rename": "^1.2.0",
"gulp-rimraf": "^0.1.1",
"gulp-sass": "^1.2.0",
"gulp-uglify": "^1.0.1",
"gulp-util": "^3.0.1",
"ng-file-upload": "^7.0.9",
"run-sequence": "^1.0.1",
"vinyl-source-stream": "^1.1.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"angular": "./node_modules/angular/angular.js",
"d3plus": "./dist/scripts/lib/d3plus.min.js",
"slider": "./dist/scripts/lib/angular-slider.min.js",
"topojson": "./dist/scripts/lib/topojson.js",
"filesaver": "./dist/scripts/lib/FileSaver.min.js",
"handsontable": "./dist/scripts/lib/handsontable.full.min.js"
},
"browserify-shim": {
"angular": "angular",
"slider": "slider",
"d3plus": "d3plus",
"topojson": "topojson",
"filesaver": "filesaver",
"handsontable": "handsontable"
}
}