forked from babel-utils/babel-plugin-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.17 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
{
"name": "babel-plugin-tester",
"version": "0.0.0-semantically-released",
"description": "Utilities for testing babel plugins",
"main": "dist/index.js",
"engines": {
"node": "> 4",
"npm": "> 3"
},
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate",
"precommit": "kcd-scripts precommit"
},
"files": [
"dist"
],
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"common-tags": "^1.4.0",
"invariant": "^2.2.2",
"lodash.merge": "^4.6.0",
"path-exists": "^3.0.0",
"strip-indent": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.5.2",
"kcd-scripts": "^0.16.3"
},
"peerDependencies": {
"babel-core": "^6.0.0 || ^7.0.0-alpha || ^7.0.0-beta || ^7.0.0"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"max-lines": 0
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"fixtures"
],
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "4.5"
},
"exclude": [
"transform-regenerator"
]
}
]
],
"plugins": [
"babel-plugin-syntax-trailing-function-commas",
"transform-async-to-generator",
"transform-async-generator-functions",
"transform-object-rest-spread"
]
},
"repository": {
"type": "git",
"url": "https://github.com/babel-utils/babel-plugin-tester.git"
},
"bugs": {
"url": "https://github.com/babel-utils/babel-plugin-tester/issues"
},
"homepage": "https://github.com/babel-utils/babel-plugin-tester#readme"
}