-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 885 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 885 Bytes
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
{
"name": "@codefimba/babel-logger-plugin",
"version": "0.0.1",
"description": "This babel plugin creates a log statement on your functions by replace the key `$log` with an actual `console.log` statement.",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ts-node index.ts",
"dev:example": "babel example/index.js"
},
"keywords": [],
"author": "Fimba Code",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.26.0",
"typescript": "^3.8.3"
},
"directories": {
"example": "example"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/Fimba-Code/babel-logger-plugin.git"
},
"bugs": {
"url": "https://github.com/Fimba-Code/babel-logger-plugin/issues"
},
"homepage": "https://github.com/Fimba-Code/babel-logger-plugin#readme"
}