forked from brandingbrand/react-native-leanplum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"author": "Alfred Club",
"bugs": {
"url": "https://github.com/alfredclub/react-native-leanplum/issues"
},
"description": "React Native bridge for Leanplum iOS and Android SDKs.",
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@commitlint/config-lerna-scopes": "^7.0.0",
"@commitlint/travis-cli": "^7.0.0",
"@semantic-release/changelog": "^2.1.1",
"@semantic-release/git": "^6.0.1",
"@types/react-native": "^0.46.7",
"semantic-release": "^15.6.0",
"typescript": "^2.4.2"
},
"homepage": "https://github.com/alfredclub/react-native-leanplum#readme",
"license": "MIT",
"main": "dist/index.js",
"name": "@alfredclub/react-native-leanplum",
"peerDependencies": {
"react-native": ">=0.40.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alfredclub/react-native-leanplum.git"
},
"scripts": {
"prepublishOnly": "./node_modules/.bin/tsc",
"preinstall": "./node_modules/.bin/tsc",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"types": "./typings/index.d.ts",
"version": "0.1.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}"
}
]
}
}