-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "curly-html-elements",
"version": "1.1.3",
"description": "Mini tool to align HTML elements along an ellipse or a part of an ellipse",
"main": "lib/curly-html-elements.cjs.js",
"module": "lib/curly-html-elements.esm.js",
"browser": "lib/curly-html-elements.min.js",
"license": "MIT",
"author": "Behnam Azimi",
"homepage": "https://github.com/behnamazimi/curly-html-elements",
"repository": {
"type": "git",
"url": "https://github.com/behnamazimi/curly-html-elements.git"
},
"bugs": {
"url": "https://github.com/behnamazimi/curly-html-elements/issues"
},
"scripts": {
"dev": "rollup -c rollup.config.dev.js -w",
"build": "rollup -c rollup.config.js"
},
"keywords": [
"curved html elements",
"elements along ellipse",
"align elements curve",
"curve elements",
"curly elements",
"ellipse",
"html"
],
"devDependencies": {
"rollup": "^2.13.1",
"rollup-plugin-browsersync": "^1.1.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-cpy": "^2.0.1"
}
}