-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "gatsby-source-google-sheets",
"version": "1.1.1",
"description": "A source plugin for Gatsby that allows reading data from Google Sheets.",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir .",
"watch": "babel -w src --out-dir .",
"prepublish": "npm run prettify && cross-env NODE_ENV=production npm run build",
"prettify": "prettier ./src/** --write",
"test": "jest src/__test__"
},
"author": "Brandon Paquette <[email protected]>",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin"
],
"license": "MIT",
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"flow-bin": "^0.56.0",
"google-spreadsheet": "2.0.3",
"lodash": "^4.17.4",
"uuid": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.39",
"babel-cli": "^6.26.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.3",
"jest": "^22.4.2",
"prettier": "1.10.2"
},
"prettier": {
"printWidth": 100,
"parser": "flow"
}
}