-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.46 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
72
73
74
75
76
77
78
79
80
{
"name": "icon-components",
"version": "1.9.24",
"description": "Generate Icon Components",
"main": "index.js",
"bin": "dist/cli.js",
"scripts": {
"test": "npm run build && npm run test:jest && npm run test:all",
"test:jest": "jest --verbose",
"test:external": "sh test/scripts/external.sh",
"test:lists": "sh test/scripts/lists.sh",
"test:templates": "sh test/scripts/templates.sh",
"test:cleanup": "sh test/scripts/cleanup.sh",
"test:copy": "sh test/scripts/copy.sh",
"test:remove": "sh test/scripts/remove.sh",
"test:prependline": "sh test/scripts/prependLine.sh",
"test:iconfolder": "sh test/scripts/iconFolder.sh",
"test:all": "npm run test:lists && npm run test:remove && npm run test:templates && npm run test:cleanup && npm run test:external && npm run test:copy && npm run test:prependline && npm run test:iconfolder",
"build": "tsup",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"lint:fix": "eslint --ext .js,.ts --ignore-path .gitignore . --fix",
"docs": "npx gieter",
"docs:local": "node ../gieter/dist/index.js",
"dev": "tsc -w",
"prepublishOnly": "npm run test",
"yolo:publish": "npm run build && git commit -am \"yolo\" && npm version patch && npm publish --access public && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silvandiepen/icon-components.git"
},
"keywords": [
"icons",
"svg",
"components",
"generate"
],
"author": "Sil van Diepen",
"license": "MIT",
"bugs": {
"url": "https://github.com/silvandiepen/icon-components/issues"
},
"homepage": "https://github.com/silvandiepen/icon-components#readme",
"dependencies": {
"@sil/args": "^0.1.0",
"@sil/case": "^0.0.3",
"cli-block": "^1.3.8",
"ejs": "^3.1.8",
"kleur": "^4.1.5",
"mkdirp": "^1.0.4",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"svgo": "^2.8.0"
},
"devDependencies": {
"@types/ejs": "^3.1.1",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.2",
"@types/svgo": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"chai": "^4.3.6",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tslint": "^6.1.1",
"tsup": "^8.0.2",
"typescript": "^4.7.4"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
}
}