-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 956 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
{
"name": "gatsby-remark-instagram-embed",
"version": "1.0.0",
"description": "Embed instagram posts into Gatsby markdown posts processed by Gatsby",
"main": "src/index.js",
"scripts": {
"test": "jest src/__tests__",
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__"
},
"author": "Pamela Ocampo <[email protected]> (https://likescoffee.com)",
"license": "ISC",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-remark-plugin",
"markdown",
"instagram"
],
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"babel-preset-gatsby-package": "^0.1.3",
"cross-env": "^5.2.0",
"jest": "^23.6.0",
"remark": "^10.0.1"
},
"dependencies": {
"@babel/runtime": "^7.2.0"
},
"peerDependencies": {
"gatsby": ">2.0.0-alpha"
}
}