-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
46
47
48
49
{
"name": "svgi",
"version": "1.1.2",
"description": "An SVG inspector tool",
"main": "index.js",
"bin": {
"svgi": "./bin/index.js"
},
"scripts": {
"test": "vitest run",
"test:ci": "vitest run --coverage",
"test:watch": "vitest watch",
"lint": "eslint ./lib",
"add-contributor": "all-contributors add",
"generate-all-contributors": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Angelmmiguel/svgi.git"
},
"keywords": [
"svg",
"svg inspector",
"svg paths",
"paths"
],
"author": "Angel M Miguel <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Angelmmiguel/svgi/issues"
},
"homepage": "https://github.com/Angelmmiguel/svgi#readme",
"dependencies": {
"ascii-tree": "^0.3.0",
"cli-table": "^0.3.11",
"colors": "^1.4.0",
"commander": "8.3.0",
"filesize": "^8.0.7",
"js-yaml": "^4.1.0",
"xml2js": "^0.6.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^0.33.0",
"eslint": "^8.8.0",
"eslint-config-google": "^0.14.0",
"vite": "^4.4.2",
"vitest": "^0.33.0"
}
}