-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 1.1 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
{
"name": "objectiv-google-maps",
"description": "Create searchable Google Maps for specific post types.",
"version": "1.0.0",
"dependencies": {},
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"gulp": "^3.9.1",
"gulp-cheerio": "^0.6.2",
"gulp-clean-css": "^2.0.2",
"gulp-concat": "^2.6.0",
"gulp-minify": "0.0.14",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-svgmin": "^1.2.2",
"gulp-svgstore": "^6.0.0",
"gulp-uglify": "^2.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify -t [ babelify --presets [ es2015 ] ] assets/js/src/main.js -o assets/js/build/main.js",
"watch": "watchify -t [ babelify --presets [ es2015 ] ] assets/js/src/main.js -o assets/js/build/main.js",
"build-admin": "browserify -t [ babelify --presets [ es2015 ] ] assets/js/admin/src/main.js -o assets/js/admin/build/main.js",
"watch-admin": "watchify -t [ babelify --presets [ es2015 ] ] assets/js/admin/src/main.js -o assets/js/admin/build/main.js"
}
}