-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
52 lines (52 loc) · 1.13 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
{
"name": "vue2-smooth-scroll",
"version": "1.6.0",
"description": "Simple vue smooth scroll",
"main": "dist/vue-smooth-scroll.min.js",
"typings": "types/index.d.ts",
"scripts": {
"lint": "eslint src --fix",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Yuliang-Lee/vue2-smooth-scroll.git"
},
"keywords": [
"vue",
"smooth",
"scroll"
],
"author": "xlaoyu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Yuliang-Lee/vue2-smooth-scroll/issues"
},
"homepage": "https://github.com/Yuliang-Lee/vue2-smooth-scroll#readme",
"files": [
"dist",
"types/index.d.ts",
"types/vue-injections.d.ts"
],
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-loader": "^8.1.0",
"eslint": "^7.4.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"lint-staged": {
"src/**/*.js": [
"npm run lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}