-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
{
"name": "easy-affix",
"version": "1.0.8",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/dream2023/easy-affix"
},
"main": "dist/easy-affix.umd.min.js",
"homepage": "https://dream2023.github.io/easy-affix/",
"keywords": [
"vue",
"affix",
"vue-affix",
"easy-affix",
"sticty",
"vue-sticky",
"scroll"
],
"scripts": {
"build:lib": "vue build -t lib --name easy-affix -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"
},
"dependencies": {
"throttle-debounce": "^2.1.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.6.0",
"@vue/cli-plugin-eslint": "^3.6.0",
"@vue/cli-service": "^3.6.0",
"@vue/eslint-config-standard": "^4.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"core-js": "^2.6.5",
"easy-github-pages": "^1.1.1",
"eslint": "^6.6.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"
]
}
}