forked from ryanwalters/sticky-events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.34 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
{
"name": "sticky-events",
"version": "3.4.12",
"description": "Events for `position: sticky`, without the need for `onscroll`",
"main": "./dist/sticky-events.cjs.js",
"module": "./dist/sticky-events.esm.js",
"browser": "./dist/sticky-events.umd.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"dev": "rollup -c -w",
"pretest": "npm run build",
"test": "echo \"No tests!\"",
"serve": "serve",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanwalters/sticky-events.git"
},
"keywords": [
"position",
"sticky",
"events",
"without",
"scroll",
"event"
],
"author": "Ryan Walters <[email protected]> (https://ryanwalters.co)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryanwalters/sticky-events/issues"
},
"homepage": "https://github.com/ryanwalters/sticky-events#readme",
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/preset-env": "7.16.11",
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.2",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"husky": "7.0.4",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"rollup": "2.68.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "19.0.2",
"serve": "13.0.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
0,
"always"
]
}
},
"files": [
"dist"
],
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}