-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.75 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
{
"name": "gatsby-source-api",
"version": "1.0.0",
"description": "Gatsby source plugin that enables fetching JSON data from an external rest API.",
"main": "dist/gatsby-node.js",
"scripts": {
"build": "npm run clean && npm run build:types && npm run build:src",
"build:src": "npx babel src --out-dir dist --extensions '.ts' --ignore **/*.spec.ts",
"build:types": "npx ttsc --emitDeclarationOnly",
"clean": "npx rimraf dist",
"cross-env-build": "cross-env NODE_ENV=production npm run clean && npm run build",
"examples-env": "cp examples/.default.env examples/.env",
"lint": "npx eslint src",
"lint:fix": "npx eslint src --fix",
"lint:types": "npx ttsc --noEmit",
"postbuild": "npx rimraf dist/index.js && ./scripts/examples.sh",
"prepare": "npm run cross-env-build",
"prepublish": "npm run lint && npm run test:ci && npm run cross-env-build",
"publish": "npm publish --access public",
"test": "npx jest",
"test:ci": "npx jest --ci",
"test:coverage": "npx jest --collect-coverage",
"test:watch": "npx jest --watch"
},
"author": "SingleStore Web Team <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/memsql/gatsby-source-api",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin"
],
"bugs": {
"url": "https://github.com/memsql/gatsby-source-api/issues"
},
"dependencies": {
"chalk": "^4.1.2",
"got": "^11.8.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.177",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"babel-jest": "^27.3.1",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-gatsby-package": "^2.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-disable": "^2.0.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"gatsby": "^4.2.0",
"gatsby-plugin-utils": "^2.2.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ttypescript": "^1.5.12",
"typescript": "^4.5.2"
},
"peerDependencies": {
"gatsby": "^3.0.0 || ^4.0.0"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/memsql/gatsby-source-api.git"
},
"engines": {
"node": ">=12.13.0"
}
}