-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "gatsby-source-trustpilot",
"version": "0.1.0",
"description": "Source plugin for pulling the reviews data from Trustpilot",
"main": "gatsby-node.js",
"repository": {
"type": "git",
"url": "https://github.com/iKonrad/gatsby-source-trustpilot.git"
},
"scripts": {
"build": "babel src --out-dir . --ignore __tests__",
"prepublish": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore __tests__"
},
"bugs": {
"url": "https://github.com/iKonrad/gatsby-source-trustpilot/issues"
},
"author": "Konrad Jarosinski <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.26.0",
"gatsby-node-helpers": "^0.3.0",
"pluralize": "^7.0.0",
"trustpilot": "^3.1.1"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin"
],
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/polyfill": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@types/request": "^2.48.1",
"colors": "^1.3.3",
"cross-env": "^5.2.0"
}
}