forked from alexanderbezverhni/react-native-popover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 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
{
"name": "react-native-popover",
"version": "2.8.2",
"description": "A <Popover /> component for react-native",
"main": "Popover.js",
"author": "Jean Regisser <jean.regisser@gmail.com> (https://github.com/jeanregisser)",
"keywords": [
"react-component",
"react-native",
"ios",
"ui",
"popover",
"modal"
],
"license": "MIT",
"scripts": {
"start": "node_modules/react-native/packager/packager.sh",
"ci-pre-publish": "json -I -f package.json -e 'this.private=false'",
"publish-tag": "npm dist-tag add $npm_package_name@$npm_package_version",
"ci-pre-publish-release": "npm run ci-pre-publish-release-tag && npm run ci-pre-publish-release-branch",
"ci-pre-publish-release-tag": "json -I -f package.json -e \"this.publishConfig.tag='$RELEASE_TAG'\"",
"ci-pre-publish-release-branch": "json -I -f package.json -e \"this.release.branch='${BUILD_SOURCEBRANCH#refs/heads/}'\"",
"ci-release-branch": "git-release-branch",
"git-vsts-branch": "git-vsts-branch",
"release": "npm-release"
},
"private": true,
"files": [
"Popover.js"
],
"dependencies": {
"create-react-class": "^15.6.2",
"prop-types": "^15.5.10",
"underscore": "^1.8.3"
},
"devDependencies": {
"json": "^9.0.3",
"npm-release": "^1.0.0",
"react-native": "0.29.0"
},
"repository": {
"type": "git",
"url": "https://github.com/agilityworks-uk/react-native-popover.git"
},
"publishConfig": {
"access": "restricted",
"tag": "taw-dev"
},
"release": {
"branch": "develop",
"verifyConditions": "@taw/condition-vsts"
}
}