-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.16 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
49
50
51
52
53
54
55
56
57
58
{
"name": "p5.anims",
"version": "0.0.7",
"description": "p5.animS animates p5.js shapes by rendering their drawing processes.",
"main": "build/p5.anims.js",
"type": "module",
"files": [
"README.md",
"LICENSE",
"build/p5.anims.js",
"build/p5.anims.min.js"
],
"scripts": {
"grunt": "grunt",
"test": "npx ava",
"lint": "grunt lint",
"build": "grunt build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wixette/p5.animS.git"
},
"author": "wixette",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/wixette/p5.animS/issues"
},
"homepage": "https://wixette.github.io/p5.animS/",
"devDependencies": {
"almost-equal": "^1.1.0",
"ava": "^5.3.1",
"esm": "^3.2.25",
"grunt": "^1.6.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-rollup": "^12.0.0",
"http-server": "^14.1.1"
},
"ava": {
"require": [
"esm"
]
},
"dependencies": {
"p5": "^1.9.1"
},
"keywords": [
"p5js",
"processing",
"animation",
"shapes",
"2D",
"rendering",
"creative",
"curves",
"drawing"
]
}