-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "flickity-docs",
"version": "3.0.0",
"description": "Documentation for Flickity",
"main": "index.js",
"scripts": {
"test": "npm run lint",
"lint": "npx eslint .",
"dev": "npx gulp dev",
"build": "npm run lint && npm run buildExport && npx gulp",
"zip": "rm -rf build/flickity-docs.zip && cp -r build docs && zip -rq build/flickity-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"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"glob": "^7.2.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-filter": "^7.0.0",
"gulp-front-matter": "^1.3.0",
"gulp-hb": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"highlight.js": "^11.5.0",
"transfob": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.12.0",
"eslint-plugin-metafizzy": "^2.0.1"
},
"keywords": [
"flickity",
"docs"
],
"author": "Metafizzy",
"private": true,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git://github.com/metafizzy/flickity-docs.git"
},
"bugs": {
"url": "https://github.com/metafizzy/flickity-docs/issues"
},
"homepage": "https://flickity.metafizzy.co"
}