-
Notifications
You must be signed in to change notification settings - Fork 587
/
Copy pathpackage.json
85 lines (85 loc) · 2.92 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": "@ant-design/icons-vue",
"version": "7.0.1",
"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": {
"clean": "./scripts/cleanup.sh",
"start": "vc-tools run server",
"lint": "eslint src/ --ext .tsx,.ts",
"compile": "vc-tools run compile",
"test": "cross-env NODE_ENV=test jest --config .jest.js",
"prepublishOnly": "npm run lint && npm run generate && npm run compile && npm run test",
"generate": "rimraf src/icons && TS_NODE_PROJECT=scripts/tsconfig.json node -r ts-node/register scripts/generate.ts --target=icon",
"postcompile": "npm run clean && TS_NODE_PROJECT=scripts/tsconfig.json node -r ts-node/register scripts/generate.ts --target=entry",
"ci": "npm run lint && npm run compile && npm run test"
},
"peerDependencies": {
"vue": ">=3.0.3"
},
"devDependencies": {
"@ant-design-vue/tools": "^3.1.2",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-member-expression-literals": "^7.14.5",
"@babel/plugin-transform-object-assign": "^7.14.5",
"@babel/plugin-transform-property-literals": "^7.14.5",
"@babel/plugin-transform-spread": "^7.14.6",
"@babel/plugin-transform-template-literals": "^7.14.5",
"@babel/runtime": "^7.11.2",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.165",
"@types/node": "^13.13.15",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"@vue/babel-plugin-jsx": "^1.0.6",
"@vue/cli-plugin-babel": "^5.0.0-0",
"@vue/cli-plugin-eslint": "^5.0.0-0",
"@vue/cli-plugin-typescript": "^5.0.0-0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.3",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-beta.2",
"core-js": "^3.32.2",
"cross-env": "^7.0.3",
"eslint": "^7.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.0.0",
"gulp-less": "^5.0.0",
"jest": "^26.0.0",
"jest-serializer-vue": "^2.0.2",
"lodash": "^4.17.15",
"prettier": "^1.19.1",
"ts-node": "^10.1.0",
"typescript": "^4.2.0",
"vue": "^3.0.3",
"vue-jest": "^5.0.0-alpha.10"
},
"dependencies": {
"@ant-design/colors": "^6.0.0",
"@ant-design/icons-svg": "^4.2.1"
},
"config": {
"port": 9528,
"entry": {
"index": [
"./src/index.ts"
]
}
},
"description": "Ant Design Icons for Vue"
}