-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.71 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
{
"name": "@animo-id/indy-sdk-expo-plugin",
"description": "Config plugin to auto configure Indy SDK on prebuild",
"version": "0.0.0",
"main": "build/withIndySdk.js",
"scripts": {
"check-format": "prettier --check 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepublish": "yarn run build",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/animo/indy-sdk-expo-plugin",
"baseUrl": "https://github.com/animo/indy-sdk-expo-plugin"
},
"keywords": [
"react-native",
"Hyperledger Indy",
"Hyperledger Aries",
"Indy SDK",
"expo",
"config-plugins",
"prebuild"
],
"author": {
"name": "Animo Solutions",
"email": "[email protected]"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^18.0.3",
"husky": "^4.2.3",
"prettier": "^2.0.3",
"release-it": "^16.1.4",
"typescript": "~4.9.5"
},
"husky": {
"hooks": {
"pre-push": "npm run check-format"
}
},
"dependencies": {
"@expo/config-plugins": "~7.2.5",
"resolve-from": "^5.0.0"
},
"peerDependencies": {
"expo": "~49",
"indy-sdk-react-native": "^0.3.0",
"react-native": ">= 0.70"
},
"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"
}
}
}