forked from mattphillips/babel-plugin-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.11 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.11 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "babel-plugin-console",
"version": "0.0.1",
"description": "Babel plugin with additional console helper functions",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"contributor": "all-contributors add",
"contributor:gen": "all-contributors generate",
"build": "babel src -d dist --ignore *.test.js",
"lint": "eslint src",
"lint:fix": "yarn lint -- --fix",
"precommit": "lint-staged",
"prettier": "prettier 'src/**/*.js' --write --single-quote=true --print-width=120",
"test": "jest",
"test:coverage": "yarn test -- --coverage",
"test:report": "codecov",
"test:watch": "yarn test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattphillips/babel-plugin-console.git"
},
"keywords": [
"babel",
"plugin",
"babel-plugin",
"console",
"scope"
],
"author": "Matt Phillips <matt@mattphillips> (http://mattphillips.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattphillips/babel-plugin-console/issues"
},
"homepage": "https://github.com/mattphillips/babel-plugin-console#readme",
"devDependencies": {
"all-contributors-cli": "^4.3.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-tester": "^3.2.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"codecov": "^2.2.0",
"eslint": "^4.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-wyze": "^3.3.1",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lint-staged": "^4.0.2",
"prettier": "^1.5.3"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"lint-staged": {
"*.js": [
"yarn prettier",
"git add"
]
}
}