-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 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
{
"name": "project-seed",
"version": "0.1.0",
"description": "A basic project starting template.",
"repository": {
"type": "git",
"url": "https://github.com/developmentseed/project-seed.git"
},
"author": {
"name": "Development Seed",
"url": "https://developmentseed.org"
},
"license": "BSD",
"bugs": {
"url": "https://github.com/developmentseed/project-seed/issues"
},
"homepage": "https://github.com/developmentseed/project-seed",
"scripts": {
"postinstall": "[ -f app/assets/scripts/config/local.js ] || echo 'module.exports = {};' > app/assets/scripts/config/local.js",
"serve": "gulp serve",
"build": "gulp",
"lint": "semistandard app/assets/scripts/**/*.js",
"test": "echo NO TESTS YET"
},
"browserify": {
"transform": [
"babelify",
"require-globify",
"envify"
]
},
"devDependencies": {
"autoprefixer-core": "^5.2.0",
"babel": "^5.8.23",
"babelify": "^6.3.0",
"browser-sync": "^2.7.6",
"browserify": "^10.2.3",
"del": "^1.2.0",
"envify": "^3.4.0",
"gulp": "^3.9.0",
"gulp-cache": "^0.2.9",
"gulp-csso": "^1.0.0",
"gulp-exit": "0.0.2",
"gulp-if": "^1.2.5",
"gulp-imagemin": "^2.2.1",
"gulp-jshint": "^1.11.0",
"gulp-load-plugins": "^0.10.0",
"gulp-minify-html": "^1.0.3",
"gulp-plumber": "^1.0.1",
"gulp-postcss": "^5.1.8",
"gulp-rename": "^1.2.2",
"gulp-rev": "^4.0.0",
"gulp-rev-replace": "^0.4.1",
"gulp-sass": "^2.0.1",
"gulp-size": "^1.2.1",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-useref": "^1.2.0",
"gulp-util": "^3.0.5",
"jshint-stylish": "^2.0.0",
"node-bourbon": "^4.2.3",
"node-notifier": "^4.2.1",
"opn": "^1.0.2",
"require-globify": "^1.2.1",
"semistandard": "^5.0.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.2.1"
},
"dependencies": {
"lodash.flatten": "^3.0.2",
"tile-cover": "^3.0.1",
"tilebelt": "^1.0.1",
"turf-bbox-polygon": "^1.0.1"
}
}