forked from css-doodle/css-doodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.34 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
{
"name": "css-doodle",
"version": "0.39.1",
"description": "A web component for drawing patterns with CSS",
"main": "css-doodle.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"minify": "terser -cm --comments '/^!/' -o css-doodle.min.js --ecma 6 -b ascii_only=true -- css-doodle.js",
"trim": "./tools/trim.js css-doodle.min.js",
"test": "ava",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/css-doodle/css-doodle.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/css-doodle"
},
"devDependencies": {
"ava": "^6.0.1",
"rollup": "^4.9.0",
"terser": "^5.26.0"
},
"files": [
"css-doodle*.js",
"src"
],
"exports": {
".": "./css-doodle.min.js",
"./component": {
"import": "./src/exports/component/index.js"
},
"./generator": {
"import": "./src/exports/generator/index.js"
},
"./parser": {
"import": "./src/exports/parser/index.js"
}
},
"keywords": [
"css",
"css-doodle",
"creative-coding",
"generative-art",
"patterns",
"web-component"
],
"type": "module",
"author": "yuanchuan",
"license": "MIT",
"bugs": {
"url": "https://github.com/css-doodle/css-doodle/issues"
},
"homepage": "https://css-doodle.com"
}