-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"private": true,
"name": "harmonograph.art",
"version": "0.1.1",
"description": "Draw, download and share a randomised harmonograph.",
"author": {
"name": "Alex Page",
"email": "[email protected]",
"url": "https://alexpage.dev/",
"twitter": "https://twitter.com/alexpage_/"
},
"contributors": [
{
"name": "Alex Page",
"email": "[email protected]",
"url": "https://alexpage.dev"
}
],
"scripts": {
"test": "xo && npm run test:content && npm run test:scripts",
"test:content": "write-good *.md",
"test:scripts": "xo",
"build:sw": "node scripts/sw-build",
"build": "eleventy && npm run build:sw",
"watch": "eleventy --serve"
},
"engines": {
"node": "10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-page/harmonograph.art"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/alex-page/harmonograph.art/issues"
},
"homepage": "https://github.com/alex-page/harmonograph.art#readme",
"dependencies": {
"@11ty/eleventy": "^1.0.2",
"@harmonograph/svg": "^0.2.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"alpinejs": "^2.3.5",
"color-string": "^1.5.5",
"html-minifier": "^4.0.0",
"rollup": "^2.2.0",
"rollup-plugin-terser": "^5.3.1",
"workbox-build": "^6.5.4"
},
"devDependencies": {
"write-good": "^1.0.2",
"xo": "^0.53.1"
},
"xo": {
"env": "browser"
}
}