-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.41 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.41 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
{
"name": "babel-plugin-codemod-named-export-declarations",
"version": "1.3.0",
"description": "Transform export object literals to single named export declarations",
"main": "src/index.js",
"repository": "git@github.com:infctr/babel-plugin-codemod-named-export-declarations.git",
"author": "infctr <infctr@gmail.com>",
"license": "MIT",
"prettier": {
"printWidth": 80,
"eslintIntegration": true,
"semi": true,
"trailingComma": "es5",
"singleQuote": true
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"testEnvironment": "node",
"testMatch": [
"**/__tests__/*.{js,ts}"
]
},
"scripts": {
"test": "jest"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.56",
"@babel/core": "^7.0.0-beta.56",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-plugin-tester": "^5.4.0",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-types": "^1.0.2",
"jest": "^23.4.2",
"prettier": "^1.14.0"
},
"dependencies": {
"better-log": "^1.3.3"
},
"keywords": [
"babel-plugin",
"babel-codemod",
"transform",
"exports"
]
}