forked from SimonErm/react-native-job-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.86 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
{
"name": "react-native-job-queue",
"title": "React Native Job Queue",
"version": "0.4.2",
"description": "TODO",
"react-native": "src/index.ts",
"types": "lib/typescript/src",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"scripts": {
"start": "react-native start",
"validate:eslint": "eslint \"src/**/*.{js,ts,tsx}\" \"example/**/*.{js,ts,tsx}\"",
"validate:typescript": "tsc --project ./ --noEmit",
"test": "jest --coverage",
"prepare": "bob build",
"typedoc": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SimonErm/react-native-job-queue.git",
"baseUrl": "https://github.com/SimonErm/react-native-job-queue"
},
"keywords": [
"react-native"
],
"author": {
"name": "Simon",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react-native": ">=0.57.0-rc.0 <1.0.x"
},
"devDependencies": {
"@react-native-community/bob": "0.6.1",
"@types/jest": "^24.0.17",
"@types/react": "^16.8.25",
"@types/react-native": "0.60.3",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"jest": "24.8.0",
"metro-react-native-babel-preset": "^0.56.0",
"react": "16.8.0",
"react-native": "0.60.4",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.1.1",
"typescript": "^4.5.5"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}