-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
executable file
·71 lines (71 loc) · 1.69 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "oslllo-svg-fixer",
"version": "5.0.0",
"description": "Converts SVG Strokes To Fill.",
"bin": "src/cli.js",
"main": "src/index.js",
"files": [
"src",
"scripts"
],
"scripts": {
"debug": "node scripts/debug.js",
"lint": "eslint -- src test ./",
"lint:fix": "eslint --fix src test ./",
"test:only": "nyc mocha test/main.test.js && mocha test/output.test.js",
"test": "nyc mocha test/main.test.js && mocha test/output.test.js && npm run lint",
"test:cli": "mocha test/src/test.cli.js",
"coverage": "nyc report --reporter=lcovonly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslllo/svg-fixer.git"
},
"keywords": [
"converts-svg",
"svg-fixer",
"svg-icons",
"font-pack",
"svg",
"font",
"fill",
"stroke-fill",
"fontello",
"icomoon",
"webfont",
"stroke-to-fill",
"oslllo"
],
"author": "Ghustavh Ehm",
"license": "MIT",
"bugs": {
"url": "https://github.com/oslllo/svg-fixer/issues"
},
"homepage": "https://docs.oslllo.com/svg-fixer/master",
"dependencies": {
"ansi-colors": "^4.1.3",
"cli-progress": "^3.12.0",
"fast-glob": "^3.3.1",
"oslllo-potrace": "^3.0.0",
"oslllo-svg2": "^3.0.0",
"oslllo-validator": "^3.1.0",
"piscina": "^4.1.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.6",
"looks-same": "^7.3.0",
"mocha": "^9.2.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"stopwatch-node": "^1.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}