-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
82 lines (82 loc) · 2.03 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
79
80
81
82
{
"name": "styleguide",
"version": "1.0.0",
"description": "Mapzen Styleguide powering everything part of the Mapzen brand",
"main": "server.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "echo \"No tests\" && exit 0",
"start": "node server.js",
"build": "gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapzen/styleguide.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/mapzen/styleguide/issues"
},
"homepage": "https://github.com/mapzen/styleguide#readme",
"devDependencies": {
"bootstrap-sass": "^3.3.7",
"browserify-shim": "^3.8.13",
"del": "^2.1.0",
"express": "^4.13.3",
"gulp": "^3.9.0",
"gulp-cssnano": "^2.1.2",
"gulp-file-include": "^0.13.7",
"gulp-rename": "^1.2.2",
"gulp-s3-upload": "^1.5.0",
"gulp-sass": "^3.1.0",
"gulp-snippet-highlight": "^1.0.0",
"gulp-sourcemaps": "^2.4.0",
"gulp-uglify": "^2.1.0",
"gulp-util": "^3.0.7",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"bootstrap": "^3.3.7",
"browserify": "^14.1.0",
"classlist-polyfill": "1.2.0",
"jquery": "^2.2.0",
"object-assign": "^4.1.1",
"promise": "^8.0.0",
"rangeslider.js": "^2.3.0",
"whatwg-fetch": "2.0.3"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"jquery": "./node_modules/jquery/dist/jquery.js",
"bootstrap/js/affix": "./node_modules/bootstrap/js/affix.js",
"bootstrap/js/dropdown": "./node_modules/bootstrap/js/dropdown.js",
"bootstrap/js/scrollspy": "./node_modules/bootstrap/js/scrollspy.js",
"rangeslider": "./node_modules/rangeslider.js/dist/rangeslider.js"
},
"browserify-shim": {
"jquery": "jQuery",
"bootstrap/js/affix": {
"depends": [
"jquery"
]
},
"bootstrap/js/dropdown": {
"depends": [
"jquery"
]
},
"bootstrap/js/scrollspy": {
"depends": [
"jquery"
]
}
}
}