-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 930 Bytes
/
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
{
"name": "pathfit",
"version": "1.0.4",
"description": "Transform CSS path() values to responsively fit a container",
"main": "src/main.js",
"type": "commonjs",
"browser": "pathfit.js",
"repository": {
"type": "git",
"url": "https://github.com/ccprog/pathfit.git"
},
"keywords": [
"path",
"responsive",
"CSS",
"SVG",
"transform"
],
"author": "Claus Colloseus <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ccprog/pathfit/issues"
},
"homepage": "https://github.com/ccprog/pathfit#readme",
"scripts": {
"build": "rollup -c",
"test": "npx jasmine",
"preversion": "npm test",
"version": "npm run build && git add pathfit*",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1",
"rollup-plugin-terser": "^7.0",
"jasmine": "^3.5"
},
"dependencies": {}
}