-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 865 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 865 Bytes
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
{
"name": "figicons-cli",
"version": "2.0.0",
"author": "Stefan Mansson <st.mansson@icloud.com>",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Figicons/cli.git"
},
"scripts": {
"package": "changelog && git push --follow-tags && yarn publish --access public --non-interactive"
},
"keywords": [
"figicons",
"icons",
"figma",
"react",
"custom-icon",
"svgo",
"design"
],
"homepage": "https://figicons.com",
"license": "MIT",
"private": false,
"bin": {
"figicons": "./bin/index.js"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"chalk-pipe": "^5.1.1",
"cheerio": "^1.0.0-rc.10",
"commander": "^9.1.0",
"inquirer": "^8.2.1",
"request": "^2.88.2",
"svgo": "^2.8.0"
},
"devDependencies": {
"changelog.md": "^1.1.0"
}
}