forked from ocetnik/react-native-background-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.27 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
{
"name": "@autofleet/react-native-background-timer",
"version": "2.4.2",
"description": "Emit event periodically (even when app is in the background)",
"keywords": [
"react-native",
"background",
"timer",
"android",
"ios"
],
"main": "index.js",
"scripts": {
"eslint": "eslint *.js",
"eslint:fix": "yarn eslint --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/ocetnik/react-native-background-timer.git"
},
"author": "David Ocetnik",
"license": "MIT",
"peerDependencies": {
"react-native": ">=0.47.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"react": "16.13.1",
"react-native": "^0.63.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}