-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "gatsby-source-homerun",
"version": "1.0.4",
"description": "Gatsby source plugin for building websites using Homerun.co as a data source",
"main": "index.js",
"scripts": {
"test": "jest",
"format": "prettier ./src/** --write",
"build": "babel src --out-dir . --ignore __tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore __tests__"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin"
],
"author": "Nikolai R Kristiansen <[email protected]>",
"license": "MIT",
"repository": {
"url": "https://github.com/convertelligence/gatsby-source-homerun",
"type": "git"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"babel-runtime": "6.26.0",
"cross-env": "5.1.6",
"jest": "23.0.1",
"prettier": "1.13.0"
},
"dependencies": {
"axios": "0.18.0",
"deep-map-keys": "1.2.0"
},
"prettier": {
"printWidth": 100
},
"jest": {
"testEnvironment": "node"
}
}