-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit fc33171
Showing
2 changed files
with
2,657 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "babel-plugin-console-perf", | ||
"version": "0.0.1", | ||
"description": "A plugin that makes it easy to profile functions using console.profile and console.time functions", | ||
"main": "index.js", | ||
"author": "Kashyap Kondamudi", | ||
"license": "MIT", | ||
"scripts": { | ||
"test": "jest test.js", | ||
"debug": "babel-node --inspect-brk test.js" | ||
}, | ||
"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.profile", "console.time", "performance" ], | ||
"files": [ "index.js" ] | ||
} |
Oops, something went wrong.