forked from dcvz/react-native-zendesk
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "react-native-zendesk",
"version": "2.1.0",
"description": "Zendesk SDK for React Native.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && tsc",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "yarn build",
"prepublishOnly": "yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*",
"ios/**/*",
"android/**/*",
"*.podspec"
],
"homepage": "https://github.com/dcvz/react-native-zendesk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dcvz/react-native-zendesk.git"
},
"keywords": [
"zendesk",
"react",
"native",
"react-native",
"ios",
"android",
"support"
],
"author": "dcvz",
"license": "MIT",
"bugs": {
"url": "https://github.com/dcvz/react-native-zendesk/issues"
},
"devDependencies": {
"@types/react-native": "^0.60.0",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.17.0",
"rimraf": "^2.6.2",
"typescript": "^3.2.4"
}
}