-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.39 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
{
"name": "gatsby-plugin-scroll-indicator",
"version": "1.0.1",
"description": "A visual indicator of page scroll",
"keywords": [
"gatsby",
"gatsby-plugin",
"indicator",
"plugin",
"scroll"
],
"homepage": "https://github.com/barrymcgee/gatsby-plugin-scroll-indicator#readme",
"bugs": {
"url": "https://github.com/barrymcgee/gatsby-plugin-scroll-indicator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barrymcgee/gatsby-plugin-scroll-indicator.git"
},
"license": "ISC",
"author": "Barry McGee <[email protected]>",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir .",
"clean": "rm -rf node_modules",
"prepare": "npm run build",
"watch": "babel -w src --out-dir .",
"prettier-check": "prettier --check **/*.*",
"release": "release-it"
},
"dependencies": {
"@babel/runtime": "7.26.0",
"multimatch": "5.0.0"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"release-it": "14.14.3",
"@babel/core": "7.26.0",
"babel-preset-gatsby-package": "0.12.0",
"husky": "7.0.4",
"prettier": "2.8.8",
"pretty-quick": "3.3.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"release-it": {
"github": {
"release": true,
"pushRepo": "https://github.com/barrymcgee/gatsby-plugin-scroll-indicator"
}
}
}