55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"name": "css-doodle",
|
|
"version": "0.34.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": "^4.3.1",
|
|
"rollup": "^2.77.0",
|
|
"terser": "^5.14.2"
|
|
},
|
|
"files": [
|
|
"css-doodle*.js",
|
|
"src"
|
|
],
|
|
"exports": {
|
|
".": "./src/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"
|
|
}
|