-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "babel-plugin-hoist-facc",
"version": "0.2.3",
"description": "Babel plugin to hoist a FACC",
"main": "lib/index.js",
"files": [
"lib"
],
"author": "Kirill Mesnyankin <[email protected]>",
"repository": {
"url": "https://github.com/strayiker/babel-plugin-hoist-facc.git"
},
"license": "MIT",
"scripts": {
"prebuild": "rimraf lib",
"build": "babel src -d lib --source-maps",
"example": "babel example/input.js -o example/output.js",
"test": "jest",
"prepare": "yarn build"
},
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-syntax-jsx": "^7.0.0",
"@babel/template": "^7.1.2"
},
"devDependencies": {
"@babel/cli": "^7.1.1",
"@babel/core": "^7.1.1",
"@babel/helper-plugin-test-runner": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-classes": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.0",
"jest": "23.6.0",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"@babel/core": "^7.0.0 || ^7.1.0"
},
"jest": {
"testEnvironment": "node",
"testRegex": "./test/.+\\.m?js$",
"testPathIgnorePatterns": [
"/test/fixtures/"
],
"testURL": "http://localhost/"
}
}