-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
{
"name": "easy-go-top",
"version": "1.0.1",
"private": false,
"scripts": {
"build:lib": "vue build -t lib --name easy-go-top -d ./dist/ ./src/index.js",
"build:docs": "vue-cli-service build",
"build": "npm run lint && npm run build:docs && npm run build:lib",
"serve": "npm run doc",
"doc": "vue-cli-service serve --mode dev-doc",
"example": "vue-cli-service serve --mode dev-example",
"lint": "vue-cli-service lint",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit"
},
"repository": {
"type": "git",
"url": "https://github.com/dream2023/easy-go-top"
},
"main": "dist/easy-go-top.umd.min.js",
"homepage": "https://dream2023.github.io/easy-go-top/",
"keywords": [
"easy-go-top",
"go-top",
"goTop",
"back to top",
"backtotop",
"backTop",
"vue-backtop",
"vue-go-top",
"vue"
],
"dependencies": {},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-e2e-cypress": "^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.1",
"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"
]
}
}