forked from babel-utils/babel-plugin-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.3 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
85
86
87
88
89
90
91
{
"name": "babel-plugin-tester",
"version": "0.0.0-semantically-released",
"description": "Utilities for testing babel plugins",
"main": "dist/index.js",
"engines": {
"node": ">=10.13",
"npm": ">=6"
},
"scripts": {
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"setup": "npm install && npm run validate -s",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate"
},
"files": [
"dist",
"pure.js"
],
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com)",
"license": "MIT",
"dependencies": {
"@types/babel-plugin-tester": "^9.0.0",
"lodash.mergewith": "^4.6.2",
"prettier": "^2.0.1",
"strip-indent": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-async-generator-functions": "^7.10.5",
"@babel/plugin-syntax-jsx": "^7.10.4",
"@babel/plugin-syntax-typescript": "^7.10.4",
"@babel/plugin-transform-async-to-generator": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"kcd-scripts": "^6.5.1"
},
"peerDependencies": {
"@babel/core": "^7.11.6"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"max-lines": 0,
"max-lines-per-function": 0,
"prefer-object-spread": 0,
"no-useless-catch": 0,
"babel/camelcase": 0,
"babel/valid-typeof": 0,
"babel/no-unused-expressions": 0,
"babel/quotes": 0,
"jest/prefer-todo": 0
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"fixtures"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8"
},
"exclude": [
"transform-regenerator"
]
}
]
],
"plugins": [
"@babel/plugin-transform-async-to-generator",
"@babel/plugin-proposal-async-generator-functions",
"@babel/plugin-proposal-object-rest-spread"
]
},
"repository": {
"type": "git",
"url": "https://github.com/babel-utils/babel-plugin-tester"
},
"bugs": {
"url": "https://github.com/babel-utils/babel-plugin-tester/issues"
},
"homepage": "https://github.com/babel-utils/babel-plugin-tester#readme"
}