-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "gatsby-plugin-compile-es6-packages",
"description": "Easily add support for compiling ES6 packages into Gasby projects",
"version": "2.1.1",
"author": "Rob Walker <[email protected]>",
"bugs": {
"url": "https://github.com/robwalkerco/gatsby-plugin-compile-es6-packages/issues"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"regex-escape": "^3.4.8"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"cross-env": "^5.2.0"
},
"homepage": "https://github.com/robwalkerco/gatsby-plugin-compile-es6-packages#readme",
"keywords": [
"gatsby",
"gatsby-plugin",
"es6",
"webpack"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"gatsby": ">2.0.0-alpha"
},
"repository": "https://github.com/robwalkerco/gatsby-plugin-compile-es6-packages",
"scripts": {
"postversion": "git push",
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production yarn run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__"
}
}