forked from tkh44/babel-plugin-sitrep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 KB
/
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
38
39
40
41
42
43
44
45
46
47
{
"name": "babel-plugin-sitrep",
"version": "1.2.0",
"description": "Log all assignments and the return value of a function with a simple comment",
"main": "src/index.js",
"scripts": {
"lint": "standard src",
"lint:fix": "standard --fix src",
"test": "jest --coverage --no-cache --ci --runInBand",
"test:watch": "jest --watch --no-cache"
},
"author": "Kye Hohenberger",
"license": "MIT",
"eslintConfig": {
"extends": "standard",
"parser": "babel-eslint"
},
"standard": {
"parser": "babel-eslint"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-tester": "^4.0.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"prettier": "^1.6.1",
"standard": "^10.0.3"
},
"bugs": {
"url": "https://github.com/tkh44/babel-plugin-sitrep/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tkh44/babel-plugin-sitrep.git"
},
"keywords": [
"console",
"console.log",
"babel",
"plugin",
"babel-plugin-sitrep",
"babel log",
"logging",
"logger",
"log"
]
}