-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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-omdb",
"version": "1.0.0",
"description": "Gatsby source plugin for using data from OMDB on your website",
"main": "index.js",
"bin": "token-tool.js",
"author": "Kyle Jones <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Kerl1310/gatsby-source-omdb.git"
},
"homepage": "https://github.com/Kerl1310/gatsby-source-omdb",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"omdb"
],
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc",
"format": "prettier --write 'src/*.ts",
"lint": "tslint --project tsconfig.json"
},
"files": [
"*.js",
"*.d.ts"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/inquirer": "^6.5.0",
"@types/node": "^12.6.9",
"@types/node-fetch": "^2.5.0",
"@types/open": "^6.2.1",
"@types/prettier": "^1.18.1",
"acorn": "^7.2.0",
"commander": "^2.20.0",
"dependencies": "0.0.1",
"gatsby": "^2.22.15",
"gatsby-node-helpers": "^0.3.0",
"gatsby-source-filesystem": "^2.3.8",
"inquirer": "^6.5.0",
"node-fetch": "^2.6.0",
"open": "^6.4.0",
"prettier": "^1.19.1",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.9.3"
},
"devDependencies": {},
"peerDependencies": {
"gatsby": "^2.10.8"
}
}