forked from brandingbrand/react-native-leanplum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.64 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.64 KB
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
{
"author": "Branding Brand LLC",
"bugs": {
"url": "https://github.com/brandingbrand/react-native-leanplum/issues"
},
"description": "React Native bridge for Leanplum iOS and Android SDKs.",
"dependencies": {
"@brandingbrand/fsfoundation": "^0.1.0"
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/travis-cli": "^7.1.2",
"@semantic-release/changelog": "^2.1.1",
"@semantic-release/git": "^6.0.1",
"@types/react-native": "^0.46.7",
"semantic-release": "^15.6.0",
"typescript": "^3.0.1"
},
"homepage": "https://github.com/brandingbrand/react-native-leanplum#readme",
"license": "MIT",
"main": "dist/index.js",
"name": "@brandingbrand/react-native-leanplum",
"peerDependencies": {
"react-native": ">=0.40.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brandingbrand/react-native-leanplum.git"
},
"scripts": {
"prepublishOnly": "./node_modules/.bin/tsc",
"commitmsg": "commitlint -e $GIT_PARAMS",
"test": "echo \"react-native-leanplum tests not yet implemented\""
},
"types": "./typings/index.d.ts",
"version": "2.0.2",
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
}
}