-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "gatsby-transformer-plaintext",
"version": "2.0.0",
"description": "Gatsby transformer plugin for plain text files",
"main": "index.js",
"repository": "https://github.com/sdorra/gatsby-transformer-plaintext",
"bugs": {
"url": "https://github.com/sdorra/gatsby-transformer-plaintext/issues"
},
"author": "Sebastian Sdorra <s.sdorra@gmail.com>",
"license": "MIT",
"private": false,
"keywords": [
"gatsby",
"gatsby-plugin",
"plaintext",
"text"
],
"peerDependencies": {
"gatsby": "^3.0.0"
},
"dependencies": {
"@babel/runtime": "^7.13.10"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"babel-preset-gatsby-package": "^1.3.0",
"bluebird": "^3.7.2",
"cross-env": "^7.0.3",
"jest": "^26.6.3",
"prettier": "^2.2.1"
},
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"test": "jest"
},
"engines": {
"node": ">=10.13.0"
}
}