-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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-chameleon",
"version": "1.0.1",
"description": "A node module used for creating a customizable SVG sprite, containing SVGs as symbols that can be customized in the frontend using CSS variables and more.",
"main": "./dist/index.js",
"bin": "./dist/cli.js",
"files": [
"dist"
],
"type": "commonjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc -p tsconfig.json",
"dev": "tsc --watch --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/christian-reichart/svg-chameleon"
},
"keywords": [
"svg",
"sprite"
],
"author": "Christian Reichart <[email protected]>",
"contributors": [
"Sebastian Harter",
"leChuckles"
],
"license": "ISC",
"dependencies": {
"chalk": "^4.1.0",
"find-up": "^5.0.0",
"svg-sprite": "^2.0.2",
"svgo": "^3.0.0",
"svgson": "^4.1.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/find-up": "^4.0.0",
"@types/node": "^14.14.22",
"@types/svg-sprite": "0.0.32",
"@types/yargs": "^16.0.0",
"typescript": "^4.1.3"
}
}