-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "react-native-ankidroid",
"version": "0.6.1",
"description": "A react native wrapper for the AnkiDroid API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"android/**/*",
"dist/**/*"
],
"typescript": {
"definition": "dist/index.d.ts"
},
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "echo \"No test specified\""
},
"keywords": [
"react-native",
"ankidroid",
"anki",
"android"
],
"author": "Ivan Schurawel (https://github.com/is343)",
"bugs": {
"url": "https://github.com/is343/react-native-ankidroid/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/is343/react-native-ankidroid.git"
},
"homepage": "https://github.com/is343/react-native-ankidroid/",
"license": "MIT",
"peerDependencies": {
"react-native": "^0.41.2"
},
"devDependencies": {
"@types/react-native": "^0.56.24",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3"
}
}