-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.41 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.41 KB
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": "@lifelynl/iconly",
"version": "1.2.0",
"description": "Lifely icon parser",
"main": "dist/generator.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "tsc",
"patch:solo": "npm version patch && npm publish && git push",
"patch:full": "npm run build && git add . && git commit -m 'patch' && npm run patch:solo",
"minor:solo": "npm version minor && npm publish && git push",
"minor:full": "npm run build && git add . && git commit -m 'minor' && npm run minor:solo",
"major": "echo \"You can't run major updates like this\""
},
"bin": {
"iconly": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lifelynl/Iconly.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Lifely",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/lifelynl/Iconly/issues"
},
"homepage": "https://github.com/lifelynl/Iconly#readme",
"dependencies": {
"svgo": "^1.3.2"
},
"devDependencies": {
"@types/node": "^12.12.16",
"@types/svgo": "^1.3.0",
"rimraf": "^3.0.0",
"typescript": "^3.7.3"
}
}