-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.62 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
{
"name": "aries-mobileagent-react-native",
"version": "0.1.0",
"description": "Aries Mobile Agent React Native - An Aries Mobile Agent written to create an interface for managing SSI credentials, mediation, governance frameworks, and other Aries protocols and features.",
"license": "Apache-2.0",
"main": "./src/index.ts",
"types": "./build/index.d.ts",
"scripts": {
"typescript-watch": "npx tsc --watch",
"style-watch": "onchange '**/*.ts' -- prettier --write {{changed}}",
"style-check": "prettier --check '**/*.ts'",
"style-format": "prettier --write '**/*.ts'",
"lint": "eslint .",
"test": "jest"
},
"keywords": [
"react-native",
"aries",
"mobile-agent",
"indy"
],
"peerDependencies": {
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-fs": "^2.16.6",
"react-native-get-random-values": "^1.4.0"
},
"dependencies": {
"axios": "^0.19.2",
"base64url": "^3.0.1",
"buffer": "^5.6.0",
"events": "^3.2.0",
"int64-buffer": "^0.99.1007",
"runtypes": "^5.0.1",
"url": "^0.11.0",
"uuid": "^8.1.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@react-native-community/eslint-config": "^0.0.5",
"@types/jest": "^26.0.15",
"@types/react": "^16.9.56",
"@types/react-native": "^0.63.33",
"@types/react-test-renderer": "^16.9.3",
"@types/uuid": "^8.3.0",
"commitlint": "^8.3.5",
"eslint": "^6.5.1",
"husky": "^4.2.5",
"jest": "^24.9.0",
"prettier": "^2.0.5",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}