-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "p5.fillgradient",
"version": "0.1.2",
"description": "Fill shapes in p5.js with Linear, Radial and Conic Gradients.",
"main": "src/p5.fillGradient.js",
"unpkg": "dist/p5.fillGradient.min.js",
"browser": "dist/p5.fillGradient.min.js",
"scripts": {
"clean": "rm -rf dist/*",
"build": "npm run clean && gulp",
"version": "npm run build && git add -A dist/",
"postversion": "git push && git push --tags && npm publish"
},
"browserslist": [
"defaults"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alterebro/p5.fillGradient.git"
},
"keywords": [
"gradient",
"fill",
"p5",
"p5js",
"processing",
"linear",
"radial",
"conic"
],
"author": "Jorge Moreno, @alterebro",
"license": "MIT",
"bugs": {
"url": "https://github.com/alterebro/p5.fillGradient/issues"
},
"homepage": "https://github.com/alterebro/p5.fillGradient#readme",
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-header": "^2.0.9",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2"
},
"dependencies": {}
}