forked from ant-design/ant-design-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.21 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
{
"name": "@ant-design/icons-vue",
"version": "4.0.0-alpha.0",
"main": "./lib/index.js",
"module": "./es/index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/ant-design/ant-design-icons/tree/master/packages/icons-vue"
},
"contributors": [
"tangjinzhou <415800467@qq.com>"
],
"license": "MIT",
"scripts": {
"cleanup": "./scripts/cleanup.sh",
"start": "vc-tools run server",
"lint": "eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./src",
"compile": "vc-tools run compile --babel-runtime",
"test": "cross-env NODE_ENV=test jest --config .jest.js",
"generate": "node scripts/generateIcons.js",
"prepublishOnly": "npm run lint && npm run test && npm run compile && np --no-cleanup --yolo --no-publish"
},
"files": [
"es",
"lib"
],
"peerDependencies": {
"vue": ">=2.5.0",
"vue-template-compiler": ">=2.5.0"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/node": "^10.5.5",
"@types/vue": "^2.0.0",
"@vue/server-test-utils": "1.0.0-beta.16",
"@vue/test-utils": "1.0.0-beta.16",
"babel-core": "^6.26.3",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-runtime": "^6.26.0",
"cross-env": "^5.2.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-vue": "^5.2.3",
"jest": "^23.4.2",
"jest-serializer-vue": "^2.0.2",
"np": "^5.1.1",
"prettier": "^1.18.2",
"vc-tools": "^1.0.0",
"vue": ">=2.5.0",
"vue-jest": "^2.5.0",
"vue-template-compiler": ">=2.5.0"
},
"dependencies": {
"@ant-design/colors": "^3.1.0",
"@ant-design/icons-svg": "^4.0.0-alpha.0",
"classnames": "^2.2.6",
"insert-css": "^2.0.0",
"lodash": "^4.17.15"
},
"config": {
"port": 9528,
"entry": {
"@ant-design/icons-vue": [
"./src/index.jsx"
]
}
},
"description": "<h1 align=\"center\"> Ant Design Icons for Vue </h1>"
}