-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"name": "gatsby-plugin-remove-console",
"description": "Removes console calls from Gatsby production builds.",
"version": "0.0.2",
"license": "MIT",
"author": "Abdullah Ceylan <ben@abdullahceylan.com>",
"homepage": "https://github.com/abdullahceylan/gatsby-plugin-remove-console",
"bugs": {
"url": "https://github.com/abdullahceylan/gatsby-plugin-remove-console/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/abdullahceylan/gatsby-plugin-remove-console"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"console",
"remover",
"console-remove",
"remove-console",
"babel",
"production"
],
"main": "index.js",
"scripts": {
"dev": "concurrently \"yarn run watch:prettier\" \"yarn run watch:build\" --kill-others",
"build": "babel src --out-dir .",
"watch:prettier": "onchange 'src/**/*.js' 'src/**/*.jsx' -- prettier --write {{changed}}",
"watch:build": "onchange 'src/**/*.js' 'src/**/*.jsx' -- yarn run build",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"concurrently": "^4.1.0",
"onchange": "^3.3.0",
"prettier": "^1.12.1"
},
"peerDependencies": {
"gatsby": ">=1",
"babel-plugin-transform-remove-console": "^6.9.4"
}
}