-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.77 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
{
"name": "reselect-debugger-flipper",
"version": "1.1.2",
"description": "Reselect Debugging Tools for React Native and Flipper",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"url": "https://github.com/vlanemcev/reselect-debugger-flipper",
"type": "git"
},
"homepage": "https://github.com/vlanemcev/reselect-debugger-flipper",
"bugs": "https://github.com/vlanemcev/reselect-debugger-flipper/issues",
"author": "Vladyslav Niemtsev <frontend.vlanemcev@gmail.com> (https://github.com/vlanemcev)",
"keywords": [
"flipper-plugin",
"reselect",
"reselect-dev-tools",
"reselect-devtools",
"reselect-tools"
],
"license": "MIT",
"scripts": {
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"build": "rollup -c",
"prepublishOnly": "yarn run build"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/lodash.isempty": "^4.4.6",
"@types/redux": "^3.6.0",
"@types/reselect": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"prettier": "^2.3.2",
"react-native-flipper": "^0.96.0",
"rollup": "^2.52.6",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.4"
},
"peerDependencies": {
"react-native-flipper": "^0.96.0"
},
"dependencies": {
"lodash.isempty": "^4.4.0"
}
}