-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
32 lines (32 loc) · 948 Bytes
/
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
{
"name": "isotope-docs",
"version": "3.0.0",
"dependencies": {
"cheerio": "^0.20.0",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-filter": "^4.0.0",
"gulp-front-matter": "^1.3.0",
"gulp-hb": "^5.1.4",
"gulp-jshint": "^2.0.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.8",
"handlebars-layouts": "^3.1.4",
"highlight.js": "^9.12.0",
"jshint": "^2.9.5",
"transfob": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/metafizzy/isotope-docs.git"
},
"scripts": {
"build": "npm run buildExport && npx gulp",
"zip": "rm -rf build/isotope-docs.zip && cp -r build docs && zip -rq build/isotope-docs.zip docs/ && rm -rf docs",
"buildExport": "rm -rf build/ && npx gulp export && npm run zip",
"deploy": "netlify deploy --dir=build",
"deployProd": "netlify deploy --dir=build --prod"
}
}