-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 919 Bytes
/
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
{
"name": "gatsby-source-unsplash",
"version": "0.0.0-semantically-released",
"description": "Source plugin for Gatsby to pull in unsplash photos using their API",
"main": "index.js",
"scripts": {
"test": "jest",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vacas5/gatsby-source-unsplash.git"
},
"keywords": [
"Gatsby",
"Unsplash",
"gatsby-plugin"
],
"author": "Russell J Anderson",
"license": "MIT",
"bugs": {
"url": "https://github.com/vacas5/gatsby-source-unsplash/issues"
},
"homepage": "https://github.com/vacas5/gatsby-source-unsplash#readme",
"dependencies": {
"axios": "^0.28.0",
"bluebird": "^3.5.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^9.0.11",
"jest": "^29.7.0",
"semantic-release": "^21.1.2"
}
}