-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 2.7 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@fe6/vue-icon",
"version": "0.0.1",
"description": "Vue.js 的 icon 组件",
"scripts": {
"vs": "vuetype src",
"ve": "vuetype example",
"start": "fe6vc s",
"build": "fe6vc b",
"test": "jest",
"lint": "fe6vc l",
"lint-staged": "lint-staged",
"codecov": "codecov ./coverage/clover.xml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fe6/vue-icon.git"
},
"keywords": [
"vue-icon",
"vue",
"typescript",
"component",
"components",
"vue-template",
"ts"
],
"author": "李梦龙",
"license": "ISC",
"bugs": {
"url": "https://github.com/fe6/vue-icon/issues"
},
"homepage": "https://github.com/fe6/vue-icon#readme",
"dependencies": {
"@fe6/vcmd": "^0.2.0",
"@types/jest": "^22.2.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"cache-loader": "^1.2.2",
"codecov": "^3.0.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.3",
"lint-staged": "^7.0.4",
"node-sass": "^4.8.3",
"postcss-cssnext": "^3.1.0",
"postcss-initial": "^2.0.0",
"postcss-loader": "^2.1.3",
"postcss-nested": "^3.0.0",
"postcss-nested-ancestors": "^2.0.0",
"postcss-nested-props": "^2.0.0",
"pre-commit": "^1.2.2",
"sass-loader": "^7.0.1",
"style-loader": "^0.20.3",
"ts-jest": "^22.4.2",
"ts-loader": "^4.2.0",
"tslint": "^5.9.1",
"tslint-loader": "^3.6.0",
"typescript": "^2.8.1",
"url-loader": "^1.0.1",
"vue": "^2.5.16",
"vue-class-component": "^6.2.0",
"vue-jest": "^2.5.0",
"vue-loader": "^14.2.2",
"vue-property-decorator": "^6.0.0",
"vue-template-compiler": "^2.5.16",
"vue-test-utils": "^1.0.0-beta.11",
"vuetype": "^0.3.2",
"webpack": "^4.5.0",
"webpack-dev-server": "^3.1.3"
},
"devDependencies": {
"webpack-cli": "^2.0.14"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue",
"ts"
],
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
".(ts|tsx)": "<rootDir>/node_modules/ts-jest",
".*": "<rootDir>/node_modules/babel-jest"
},
"collectCoverage": true,
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
},
"lint-staged": {
"component/**/*.vue": [
"npm run lint"
],
"component/**/*.ts": [
"npm run lint"
],
"style/**/*.scss": [
"npm run lint"
]
},
"pre-commit": [
"lint-staged"
]
}