-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.35 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
{
"name": "gatsby-remark-strava",
"version": "1.4.0",
"description": "Gatsby remark plugin to embed Strava activities and profile by their URL",
"repository": "https://github.com/cedricdelpoux/gatsby-remark-strava",
"author": {
"name": "Cédric Delpoux",
"email": "cedric.delpoux@gmail.com"
},
"license": "MIT",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-transformer-plugin",
"gatsby-remark",
"gatsby-remark-plugin",
"strava",
"embed"
],
"main": "index.js",
"files": [
"utils"
],
"dependencies": {
"express": "^4.17.3",
"glob": "^8.0.1",
"inquirer": "^8.2.2",
"open": "^8.4.0",
"strava-v3": "^2.1.0",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^4.2.1",
"lint-staged": "^11.2.6",
"prettier": "2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"peerDependencies": {
"gatsby": "^3.0.0 || ^4.0.0"
},
"scripts": {
"lint": "eslint index.js utils example",
"prepublishOnly": "yarn lint"
},
"bin": {
"gatsby-remark-strava-token": "./utils/generate-token.js"
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.{css,js,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}