-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) Β· 946 Bytes
/
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
{
"name": "@harmonograph/svg",
"version": "0.2.0",
"description": "π©βπ¨ Draw and animate a harmonograph in SVG",
"scripts": {
"test": "ava && xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-page/harmonograph-svg.git"
},
"keywords": [
"harmonograph",
"lissajous curves",
"art",
"geometric",
"generated",
"algorithm",
"svg"
],
"main": "index.js",
"files": [
"index.js"
],
"author": {
"name": "Alex Page",
"email": "alex@alexpage.com.au",
"url": "https://alexpage.dev"
},
"contributors": [
{
"name": "Alex Page",
"email": "alex@alexpage.com.au",
"url": "https://alexpage.dev"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alex-page/harmonograph-svg/issues"
},
"dependencies": {
"@harmonograph/xy": "^0.0.0",
"preact": "^10.4.1",
"preact-render-to-string": "^5.1.6"
},
"devDependencies": {
"ava": "^5.1.0",
"xo": "^0.53.1"
}
}