-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
93 lines (93 loc) · 2.5 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "taplytics-react-native",
"version": "3.1.2",
"description": "Taplytics is a native mobile A/B testing and push notification platform that helps you optimize your React Native app!",
"main": "lib/index.js",
"files": [
"lib/",
"taplytics-react-native.podspec",
"README.md",
"android/src/main/AndroidManifest.xml",
"android/src/main/java/",
"android/build.gradle",
"android/",
"ios/",
"!.circleci/",
"!docs/",
"!CHANGELOG.md",
"!ios/build/",
"!android/build/",
"!.DS_Store",
"!.gradle",
"!.idea",
"!build",
"!gradle",
"!*.iml",
"!gradlew",
"!gradlew.bat",
"!local.properties",
"!project.xcworkspace",
"!xcshareddata",
"!xcuserdata"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node_modules/.bin/tsc --project ./tsconfig.json",
"release:minor": "standard-version --release-as minor --tag-prefix=''",
"release:patch": "standard-version --release-as patch --tag-prefix=''",
"release:major": "standard-version --release-as major --tag-prefix=''",
"release:rc": "standard-version --release-as major --prerelease rc --tag-prefix=''"
},
"keywords": [
"react-native",
"taplytics"
],
"author": "Taplytics",
"license": "ISC",
"peerDependencies": {
"react": "^16.8.1",
"react-native": ">=0.60.0"
},
"dependencies": {
"lodash.clonedeep": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taplytics/Taplytics-React-Native.git"
},
"bugs": {
"url": "https://github.com/taplytics/Taplytics-React-Native/issues"
},
"homepage": "https://github.com/taplytics/Taplytics-React-Native#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/lodash.clonedeep": "^4.5.6",
"@types/react": "^17.0.3",
"@types/react-native": "^0.65.1",
"husky": "=4",
"lint-staged": ">=10",
"prettier": "2.2.1",
"react": "^17.0.1",
"react-native": "^0.63.4",
"standard-version": "^9.2.0",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,tsx,jsx}": [
"node_modules/.bin/prettier --write .",
"tslint --fix --project .",
"git add -u"
]
},
"types": "lib/index.d.ts"
}