-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 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
29
30
31
32
33
34
35
36
37
{
"name": "pixel-flow",
"version": "2.0.1",
"description": "an image pixelating filter plugin",
"main": "lib/pixel-flow.cjs.js",
"module": "lib/pixel-flow.esm.js",
"files": [
"lib",
"jquery.js",
"jquery.js.map"
],
"repository": "https://github.com/JamesNimlos/pixel-flow.git",
"author": "JamesNimlos <james@nimlos.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@jamesnimlos/gh-pages": "^1.0.0",
"jquery": "^3.5.1",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"rollup": "^2.23.0",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-sourcemaps": "^0.6.2"
},
"scripts": {
"dev": "parcel public/index.html public/jquery.html --public-url /pixel-flow/",
"fmt": "prettier --write '{./**/,}*.{js,css,md,html}'",
"build": "rollup --config",
"clean": "rm -rf dist lib gh-pages .cache jquery.js jquery.js.map",
"build:demo": "parcel build public/index.html public/jquery.html --public-url /pixel-flow/",
"gh-pages": "yarn build:demo && gh-pages -u dist"
},
"prettier": {
"singleQuote": true,
"semi": false
}
}