-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 927 Bytes
/
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
{
"name": "babel-plugin-console-groupify",
"version": "0.0.9",
"description": "Wrap console.logs inside a block element (functions) inside a group with function's name",
"main": "index.js",
"author": "Kashyap Kondamudi",
"license": "MIT",
"scripts": {
"test": "NODE_ENV=test jest test.js",
"debug": "babel-node --inspect-brk test.js"
},
"dependencies": {
"babel-types": "^6.26.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"jest": "^21.2.1"
},
"keywords": [
"babel plugin",
"console.log",
"console.group"
],
"bugs": {
"url": "https://github.com/kgrz/babel-plugin-console-groupify/issues"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/kgrz/babel-plugin-console-groupify.git"
}
}