This repository has been archived by the owner on Jan 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"name": "grasshopper-ui",
"description": "Front-end for experimenting with Grasshopper",
"version": "0.0.1",
"homepage": "http://github.com/cfpb/grasshopper-ui",
"author": {
"name": "Consumer Financial Protection Bureau",
"url": "http://cfpb.github.io/"
},
"repository": {
"type": "git",
"url": "http://github.com/cfpb/grasshopper-ui.git"
},
"bugs": {
"url": "http://github.com/cfpb/grasshopper-ui/issues"
},
"licenses": {
"type": "Public Domain",
"url": "http://github.com/cfpb/grasshopper-ui/blob/master/TERMS.md"
},
"devDependencies": {
"browserify": "^9.0.8",
"browserify-shim": "^3.8.5",
"connect-livereload": "^0.5.3",
"grunt": "^0.4.5",
"grunt-autoprefixer": "^2.2.0",
"grunt-browserify": "^3.7.0",
"grunt-connect-proxy": "^0.2.0",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-connect": "^0.10.1",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-htmlmin": "^0.4.0",
"grunt-contrib-uglify": "^0.8.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-glob": "^0.1.0",
"grunt-sass": "^1.1.0",
"load-grunt-config": "^0.16.0"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"jquery": "^2.1.4",
"mapbox.js": "^2.1.9"
},
"browser": {
"jquery": "./node_modules/jquery/dist/jquery.js"
},
"browserify-shim": {
"jquery": {
"exports": "jQuery"
}
},
"browserify": {
"transform": [
"browserify-shim"
]
}
}