forked from inkitt/react-native-queue-asyncstorage
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
128 lines (128 loc) · 3.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "react-native-queue",
"version": "1.2.1",
"description": "A React Native Job Queue",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest --coverage && if [ \"$COVERALLS_ENV\" = \"production\" ]; then cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js; fi",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/billmalarky/react-native-queue.git"
},
"keywords": [
"react",
"react-native",
"queue",
"job-queue",
"task-queue"
],
"author": "Reid Mayo",
"license": "MIT",
"bugs": {
"url": "https://github.com/billmalarky/react-native-queue/issues"
},
"homepage": "https://github.com/billmalarky/react-native-queue#readme",
"dependencies": {
"@react-native-community/async-storage": "^1.11.0",
"lodash": "^4.17.15",
"moment": "^2.26.0",
"promise-reflect": "^1.1.0",
"react-native-uuid": "^1.4.9"
},
"devDependencies": {
"babel-eslint": "^8.0.3",
"babel-jest": "^21.2.0",
"babel-preset-react-native": "^4.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.12.1",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.19.1",
"react": "16.6.3",
"react-native": "0.58.1",
"should": "^13.1.3"
},
"jest": {
"preset": "react-native",
"moduleNameMapper": {
"^[./a-zA-Z0-9$_-]+\\.(bmp|gif|jpg|jpeg|png|psd|svg|webp|ttf|otf)$": "RelativeImageStub",
"^React$": "<rootDir>/node_modules/react"
},
"setupFiles": [
"<rootDir>/test/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/e2e"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-native|react-navigation|@react-navigation|@storybook|@react-native-community)"
]
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": false,
"trailingComma": "all"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"prettier",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-native/all",
"standard"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint",
"react",
"react-native"
],
"settings": {
"react": {
"pragma": "React",
"version": "detect"
}
},
"globals": {
"__DEV__": false,
"jasmine": false,
"beforeAll": false,
"afterAll": false,
"beforeEach": false,
"afterEach": false,
"test": false,
"expect": false,
"describe": false,
"jest": false,
"it": false
},
"rules": {
"comma-dangle": 0,
"no-unused-vars": 0,
"no-undef": 0,
"quotes": 0,
"react/no-unescaped-entities": 0,
"react/prop-types": "off",
"react-native/no-raw-text": 0,
"space-before-function-paren": 0,
"@typescript-eslint/indent": 0,
"@typescript-eslint/explicit-member-accessibility": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/member-delimiter-style": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-object-literal-type-assertion": 0,
"@typescript-eslint/no-empty-interface": 0,
"@typescript-eslint/no-var-requires": 0
}
}
}