-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
101 lines (101 loc) · 3.04 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "gatsby-source-s3-image",
"description": "GatsbyJS plugin to source images from S3-compliant APIs, with EXIF-extracting superpowers.",
"version": "1.6.221",
"author": "Jesse Stuart <hi@jessestuart.com>",
"dependencies": {
"aws-sdk": "2.684.0",
"fracty": "1.0.9",
"invariant": "2.2.4",
"lodash": "4.17.15",
"luxon": "1.24.1",
"mime-types": "2.1.27",
"ts-exif-parser": "0.1.6"
},
"devDependencies": {
"@babel/cli": "7.10.0",
"@babel/core": "7.10.0",
"@babel/plugin-transform-runtime": "7.10.0",
"@babel/preset-typescript": "7.9.0",
"@semantic-release/git": "9.0.0",
"@types/invariant": "2.2.33",
"@types/jest": "25.2.3",
"@types/lodash": "4.14.153",
"@types/luxon": "1.24.0",
"@types/mime-types": "2.1.0",
"@types/mitm": "1.3.3",
"@types/node": "13.13.9",
"@types/redux-mock-store": "1.0.2",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"babel-jest": "25.5.1",
"babel-plugin-add-module-exports": "1.0.2",
"babel-plugin-lodash": "3.3.4",
"babel-preset-gatsby-package": "0.3.1",
"babel-preset-minify": "0.5.1",
"codacy-coverage": "3.4.0",
"codecov": "3.7.0",
"concurrently": "5.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-standard": "14.1.1",
"eslint-friendly-formatter": "4.0.1",
"eslint-loader": "3.0.4",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-standard": "4.0.1",
"factory.ts": "0.5.1",
"gatsby": "2.20.16",
"gatsby-source-filesystem": "2.2.2",
"jest": "25.5.4",
"jest-junit": "10.0.0",
"json-stringify-pretty-compact": "2.0.0",
"mitm": "1.7.0",
"nodemon": "2.0.4",
"prettier": "1.19.1",
"prettier-eslint": "9.0.2",
"redux": "4.0.5",
"redux-mock-store": "1.5.4",
"semantic-release": "17.0.8",
"ts-jest": "25.5.1",
"typescript": "3.9.3"
},
"files": [
"*.js",
"*.d.ts",
"types/*"
],
"homepage": "https://github.com/jessestuart/gatsby-source-s3-image#readme",
"keywords": [
"exif",
"gatsby",
"gatsby-plugin",
"gatsbyjs",
"photography",
"s3"
],
"license": "MIT",
"peerDependencies": {
"gatsby-image": "^2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jessestuart/gatsby-source-s3-image"
},
"scripts": {
"build": "babel --extensions '.ts' src/ --out-dir .",
"check-types": "tsc",
"lint": "eslint src/** --ext ts,tsx",
"prepublishOnly": "yarn build && yarn ts:defs && prettier --write index.d.ts",
"release": "yarn build && semantic-release",
"test": "concurrently 'yarn check-types' 'yarn jest --coverage'",
"test:watch": "concurrently 'yarn tsc --watch' 'yarn jest --watch'",
"ts:defs": "tsc --declaration --emitDeclarationOnly",
"update": "ncu -ua && yarn -s",
"watch": "yarn build -w"
},
"types": "./types/index.d.ts"
}