-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
101 lines (101 loc) · 2.38 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
{
"name": "vue-scrollto",
"version": "0.0.0-development",
"description": "Adds a directive that listens for click events and scrolls to elements.",
"main": "vue-scrollto.js",
"types": "vue-scrollto.d.ts",
"keywords": [
"vue",
"vuejs",
"directive",
"scroll",
"scrollto",
"scroll to"
],
"license": "MIT",
"author": {
"name": "Igor Randjelovic",
"email": "shout@igor-randjelovic.com",
"url": "http://igor-randjelovic.com",
"twitter": "https://twitter.com/igor_randj"
},
"repository": {
"type": "git",
"url": "https://github.com/rigor789/vue-scrollto"
},
"workspaces": [
"docs"
],
"dependencies": {
"bezier-easing": "2.1.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.2",
"prettier": "^1.19.1",
"rollup": "^2.4.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"semantic-release": "^17.0.4"
},
"scripts": {
"build": "rollup -c",
"lint-staged": "lint-staged",
"prepublishOnly": "npm run build",
"docs:dev": "npm -w docs run dev",
"docs:build": "npm -w docs run build",
"docs:preview": "npm -w docs run preview",
"semantic-release": "semantic-release",
"format": "prettier --write **/*.js",
"format:check": "prettier --check **/*.js"
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"git add"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/changelog/index.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"docs/changelog/index.md"
],
"message": "chore(changelog): ${nextRelease.version} [ci skip]"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}