-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 1.48 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
{
"name": "vue-auto-text",
"version": "1.0.3",
"private": false,
"scripts": {
"build:lib": "vue build -t lib --name vue-auto-text -d ./dist/ ./src/index.js",
"build:docs": "vue-cli-service build",
"build": "npm run lint && npm run build:docs && npm run build:lib",
"serve": "vue-cli-service serve",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit"
},
"repository": {
"type": "git",
"url": "https://github.com/dream2023/vue-auto-text/"
},
"main": "dist/vue-auto-text.umd.min.js",
"homepage": "https://dream2023.github.io/vue-auto-text/",
"keywords": [
"vue-auto-text",
"vue text",
"font-size",
"font",
"size",
"text-metrics",
"calculate-size",
"fit-text"
],
"dependencies": {},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-eslint": "^3.7.0",
"@vue/cli-plugin-unit-jest": "^3.7.0",
"@vue/cli-service": "^3.7.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"core-js": "^2.6.5",
"easy-github-pages": "^1.1.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^8.1.5",
"vue": "^2.6.10",
"vue-template-compiler": "^2.5.21"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"src/*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}