-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.28 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
81
82
83
84
85
{
"name": "@2fd/ant-design-icons",
"version": "0.0.0-development",
"description": "Ant Design + Material Design Icon",
"main": "lib/index.js",
"targets": {
"main": false
},
"private": false,
"publishConfig": {
"access": "public"
},
"directories": {
"docs": "docs"
},
"scripts": {
"build": "npm run build:src && npm run build:docs && npm run build:lib",
"build:lib": "tsc -p .",
"build:src": "ts-node build",
"build:docs": "parcel build static/index.html static/icons/* --dist-dir docs --public-url ./",
"start": "npm run clear && npm run build && parcel static/index.html static/icons/*",
"clear": "rm src/*.tsx && rm -rf static/chuck/* && rm -rf lib",
"semantic-release": "semantic-release",
"test": "jest"
},
"jest": {
"preset": "ts-jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2fd/ant-design-icons.git"
},
"author": "Fede Ramirez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/2fd/ant-design-icons/issues"
},
"release": {
"branch": "master",
"ci": false,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
]
},
"homepage": "https://github.com/2fd/ant-design-icons#readme",
"devDependencies": {
"@mdi/js": "^6.7.96",
"@mdi/svg": "^6.7.96",
"@semantic-release/changelog": "^5.0.0",
"@types/camelcase": "^5.2.0",
"@types/jest": "^26.0.0",
"@types/mustache": "^4.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.4.0",
"@types/react-dom": "^16.4.0",
"@types/react-test-renderer": "^16.4.0",
"antd": "^4.0.0",
"camelcase": "^7.0.0",
"jest": "^26.6.3",
"mustache": "^4.0.0",
"parcel": "^2.6.1",
"prettier": "^2.7.1",
"process": "^0.11.10",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-test-renderer": "^16.4.0",
"semantic-release": "^17.0.0",
"ts-jest": "^26.4.4",
"ts-node": "^10.8.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"antd": "^4.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"dependencies": {
"@ant-design/icons": "^4.0.0"
}
}