forked from hyperledger-archives/indy-sdk-react-native
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.81 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
{
"name": "indy-sdk-react-native",
"title": "React Native Indy SDK Wrapper",
"version": "0.0.0",
"description": "React Native Indy SDK Wrapper",
"main": "lib/index.js",
"scripts": {
"check-format": "prettier --check 'src/**/*.js'",
"format": "prettier --write 'src/**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src/ -d lib/",
"prepublish": "yarn run build",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperledger/indy-sdk-react-native.git",
"baseUrl": "https://github.com/hyperledger/indy-sdk-react-native"
},
"keywords": [
"react-native",
"Hyperledger Indy",
"Hyperledger Aries",
"Indy SDK"
],
"author": {
"name": "Jakub Koci",
"email": "jakub.koci@absa.africa"
},
"license": "Apache-2.0",
"licenseFilename": "LICENSE.md",
"readmeFilename": "README.md",
"peerDependencies": {
"react": ">= 16",
"react-native": ">=0.59.0-rc.0 <1.0.x"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-flow": "^7.8.3",
"flow-bin": "^0.117.0",
"husky": "^4.2.3",
"prettier": "^2.0.3",
"react": "^16.8.3",
"react-native": "^0.62.3",
"release-it": "^14.10.0"
},
"husky": {
"hooks": {
"pre-push": "npm run check-format"
}
},
"dependencies": {
"buffer": "^6.0.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"release-it": {
"github": {
"release": true
},
"npm": {
"skipChecks": true,
"ignoreVersion": true,
"tag": "latest"
},
"git": {
"push": false,
"commit": false,
"requireCommits": true,
"tagAnnotation": "${version}",
"requireBranch": "main"
}
}
}