-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 2.09 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
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
82
83
84
{
"name": "babel-plugin-captains-log",
"version": "0.0.0-development",
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"start": "jest --watch",
"test": "jest",
"prebuild": "rimraf dist",
"build": "babel src -d dist --source-maps --ignore '**/*.spec.js','**/__snapshots__/**','**/__fixtures__/**'",
"report-coverage": "codecov",
"contribute": "all-contributors",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once --pro"
},
"keywords": [
"babel",
"babel-plugin",
"logging"
],
"author": "Kyle Welch <[email protected]> (https://www.kwelch.dev/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kwelch/babel-plugin-captains-log.git"
},
"bugs": {
"url": "https://github.com/kwelch/babel-plugin-captains-log/issues"
},
"homepage": "https://github.com/kwelch/babel-plugin-captains-log#readme",
"description": "Babel plugin that injects helpful details into console statements",
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-transform-runtime": "~7.13.10",
"@babel/preset-env": "^7.13.12",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-tester": "^10.0.0",
"codecov": "^3.8.1",
"eslint": "^7.22.0",
"global": "^4.4.0",
"jest": "^26.6.3",
"jest-runner-eslint": "^0.10.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.2",
"travis-deploy-once": "^5.0.11"
},
"release": {
"branches": [
"main"
]
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"coveragePathIgnorePatterns": [
"node_modules",
"__fixtures__",
"__snapshots__",
"dist"
],
"projects": [
{
"displayName": "test"
},
{
"displayName": "lint",
"runner": "jest-runner-eslint",
"testMatch": [
"<rootDir>/**/*.js"
]
}
]
},
"dependencies": {
"core-js": "3.9.1"
}
}