-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "svg-path-mini-tools",
"version": "0.2.8",
"description": "A collection of minimalistic SVG path manipulation utilities",
"type": "module",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"lint": "npx eslint ./src",
"build": "npm run lint && tsc --build tsconfig.build.json && npm run minify",
"minify": "terser ./dist/index.js --output ./dist/index.min.js --compress --mangle --source-map",
"test": "jest",
"test:watch": "jest --watch",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tombigel/svg-path-mini-tools.git"
},
"keywords": [
"svg",
"path",
"scale",
"parse"
],
"author": "Tom Bigelajzen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tombigel/svg-path-mini-tools/issues"
},
"homepage": "https://github.com/tombigel/svg-path-mini-tools#readme",
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"eslint": "^8.57.0",
"globals": "^15.2.0",
"jest": "^29.7.0",
"standard-version": "^9.5.0",
"terser": "^5.31.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
}
}