-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 961 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-transform-console-log-variable-names",
"version": "0.0.3",
"description": "Babel plugin to log the names of variables when used for debugging",
"main": "index.js",
"author": "Kashyap Kondamudi",
"license": "MIT",
"dependencies": {
"babel-types": "^6.26.0",
"lodash.flattendeep": "^4.4.0",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"jest": "^21.2.1"
},
"keywords": [
"babel plugin",
"console.log"
],
"scripts": {
"debug": "babel-node --inspect test.js",
"test": "jest test.js"
},
"bugs": {
"url": "https://github.com/kgrz/babel-plugin-transform-console-log-variable-names/issues"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/kgrz/babel-plugin-transform-console-log-variable-names.git"
}
}