-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 972 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
{
"name": "console-caller",
"version": "1.0.2",
"main": "index.js",
"author": "phra <greensoncio@gmail.com>",
"license": "MIT",
"repository": "https://github.com/phra/console-caller.git",
"description": "console-caller lets you easily print the call site of console functions. It can be useful in large codebases where there are a lot of logs. Do you want to easily find out which line of your code is printing that thing? This is the right module for you!",
"scripts": {
"example": "env NODE_ENV=development node examples/example.js",
"lint-fix": "standard --fix index.js examples/*js tests/*.js",
"watch": "npm-watch",
"coverage": "tap --cov tests/*.js",
"test": "tap tests/*.js"
},
"watch": {
"test": {
"patterns": [
"."
],
"extensions": "js"
}
},
"engines": {
"node": ">6.0.0"
},
"devDependencies": {
"npm-watch": "^0.5.0",
"standard": "^14.0.0",
"tap": "^14.0.0"
}
}