-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "p5.grain",
"version": "0.7.0",
"description": "p5.grain is a p5.js addon for conveniently applying grain and texture overlays to artworks.",
"author": "meezwhite",
"license": "MIT",
"main": "p5.grain.js",
"directories": {
"example": "examples"
},
"files": [
"dist",
"p5.grain.js"
],
"scripts": {
"build:darwin": "npm run build-min:darwin; npm run dist-min:darwin",
"build-min:darwin": "mkdir -p dist; sed '/@internal/,/@end/d' p5.grain.js > p5.grain.min.js; minify p5.grain.min.js > dist/p5.grain.min.js; cp LICENSE dist/p5.grain.min.js.LICENSE.txt; rm p5.grain.min.js",
"dist-min:darwin": "echo examples/*/lib/ examples/instance-mode/*/lib/ examples/pixel-manipulation/*/lib/ | xargs -n 1 cp dist/p5.grain.min.js dist/p5.grain.min.js.LICENSE.txt"
},
"keywords": [
"javascript",
"art",
"grain",
"noise",
"texture",
"creative-coding",
"fxhash",
"p5js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/meezwhite/p5.grain.git"
},
"bugs": {
"url": "https://github.com/meezwhite/p5.grain/issues"
},
"homepage": "https://github.com/meezwhite/p5.grain",
"devDependencies": {
"minify": "^9.2.0"
}
}