-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
53 lines (53 loc) · 1.51 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
{
"name": "gatsby-source-stripe",
"version": "4.0.0",
"main": "index.js",
"description": "Gatsby source plugin for building websites using Stripe as a data source",
"scripts": {
"prebuild": "npm test && del-cli '*.js' '!src/**/**.js' '!index.js'",
"build": "babel src --out-dir . --copy-files && del-cli __tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"lint": "eslint src --ext .js",
"format": "prettier --write src/**/**.js",
"test": "jest",
"watch:test": "jest --watch",
"watch": "babel -w src --out-dir . --copy-files && del-cli __tests__"
},
"keywords": [
"stripe",
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin"
],
"author": "Nathan Beck <[email protected]> (njosefbeck.com)",
"repository": {
"type": "git",
"url": "https://github.com/njosefbeck/gatsby-source-stripe.git"
},
"bugs": "https://github.com/njosefbeck/gatsby-source-stripe/issues",
"license": "MIT",
"engines": {
"node": ">=14.15.0"
},
"peerDependencies": {
"gatsby": ">=4.0.0"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.4",
"babel-eslint": "10.1.0",
"cross-env": "7.0.3",
"del-cli": "4.0.1",
"eslint": "7.21.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-prettier": "3.3.1",
"jest": "27.3.1",
"prettier": "2.4.1"
},
"dependencies": {
"gatsby-source-filesystem": "4.2.0",
"stripe": "8.191.0"
}
}