-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
102 lines (102 loc) · 2.4 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
92
93
94
95
96
97
98
99
100
101
102
{
"name": "react-tunnels",
"version": "1.1.0",
"description": "A easy way to communicate rendering logic and data to ancestor components in React.",
"main": "./lib/index.js",
"repository": "javivelasco/react-tunnels",
"scripts": {
"build": "babel ./src --out-dir ./lib",
"build:watch": "babel ./src --out-dir ./lib --watch",
"lint": "eslint src tests",
"prettier": "prettier --write \"{src,tests}/**/*.js\"",
"prepublish": "rimraf lib && yarn build",
"test": "jest"
},
"keywords": [
"react",
"react-tunnels",
"portals",
"components"
],
"author": "Javi Velasco <[email protected]> (http://javivelasco.com/)",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "9.0.0",
"babel-jest": "23.4.2",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"enzyme": "3.5.0",
"enzyme-adapter-react-16": "1.3.1",
"eslint": "5.5.0",
"eslint-config-prettier": "3.0.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-react": "7.11.1",
"jest": "23.5.0",
"prettier": "1.14.2",
"prop-types": "15.6.2",
"react": "16.4.2",
"react-dom": "16.4.2",
"rimraf": "2.6.2"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0"
},
"babel": {
"presets": [
"env",
"stage-2",
"react"
]
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"parser": "babel-eslint",
"extends": [
"plugin:react/recommended"
],
"rules": {
"semi": 0,
"quotes": 0,
"comma-dangle": 0,
"curly": [
2,
"multi-line"
],
"arrow-parens": 0,
"class-methods-use-this": 0,
"symbol-description": 0,
"no-unused-vars": [
2,
{
"varsIgnorePattern": "^_+$"
}
],
"import/no-extraneous-dependencies": 0,
"no-confusing-arrow": 0,
"no-else-return": 0,
"react/sort-comp": 0,
"react/jsx-filename-extension": 0,
"no-prototype-builtins": 0,
"no-duplicate-imports": 0,
"prettier/prettier": 2
},
"plugins": [
"prettier",
"react"
]
}
}