-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.06 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
{
"name": "lengthy-svg",
"version": "0.7.1",
"description": "Microlibrary to give an SVG path's length in a CSS var.",
"main": "lengthy-svg.js",
"scripts": {
"build":
"rollup src/lengthy-svg.js --output.format umd --name 'Lengthy' --output.file lengthy-svg.js && uglifyjs -c -m -o lengthy-svg.min.js -- lengthy-svg.js && npm run sizes",
"sizes":
"gzip -9 -c lengthy-svg.min.js | wc -c && cat lengthy-svg.min.js | wc -c",
"version": "npm run build && git add . && git commit",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shshaw/lengthy-svg.git"
},
"keywords": [
"svg",
"path",
"length",
"stroke-dasharray",
"stroke-dashoffset",
"css",
"variables",
"custom properties"
],
"author": "Stephen Shaw (stephen@brokensquare.com)",
"license": "MIT",
"files": ["lengthy-svg.js", "lengthy-svg.min.js"],
"bugs": {
"url": "https://github.com/shshaw/lengthy-svg/issues"
},
"homepage": "https://github.com/shshaw/lengthy-svg#readme"
}