-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
58 lines (58 loc) · 1.34 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "gatsby-source-google-spreadsheets",
"version": "3.0.9",
"description": "A source plugin for Gatsby that allows reading data from Google Sheets.",
"main": "index.js",
"scripts": {
"build": "tsc --build tsconfig.json",
"prepack": "yarn test && cross-env NODE_ENV=production yarn build",
"format": "prettier ./src/** --write",
"test": "jest"
},
"author": "Cian Butler <butlerx@notthe.cloud>",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin"
],
"license": "MIT",
"jest": {
"setupFiles": [
"dotenv/config"
],
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"dependencies": {
"google-spreadsheet": "^3.1.15",
"uuid": "^7.0.3"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^12.12.21",
"@types/uuid": "^7.0.3",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"jest": "^25.4.0",
"prettier": "^2.0.5",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"trailingComma": "all",
"proseWrap": "always",
"tabWidth": 2,
"arrowParens": "avoid"
}
}