-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
37 lines (37 loc) · 948 Bytes
/
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
{
"name": "react-native-background-job",
"version": "2.3.1",
"description": "Schedule background jobs in React Native that run your JavaScript when your app is in the background.",
"main": "index.js",
"repository": "https://github.com/vikeri/react-native-background-job",
"scripts": {
"test": "echo \"No test specified\"",
"precommit": "lint-staged",
"document": "documentation readme --readme-file README.md -s \"API\" -g"
},
"keywords": [
"react-native",
"background-job"
],
"author": "Viktor Eriksson <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react-native": ">= 0.36.0"
},
"devDependencies": {
"documentation": "^8.1.2",
"husky": "^1.1.1",
"lint-staged": "^7.3.0",
"prettier": "^1.2.2"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"./index.js": [
"npm run document",
"git add"
]
}
}