forked from dfreire/gun-asyncstorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 907 Bytes
/
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
{
"name": "gun-asyncstorage",
"version": "1.1.0",
"description": "Use Gun.js in React Native through AsyncStorage",
"author": "Andre Staltz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/staltz/gun-asyncstorage.git"
},
"bugs": {
"url": "https://github.com/staltz/gun-asyncstorage/issues"
},
"homepage": "https://github.com/staltz/gun-asyncstorage#readme",
"keywords": [
"react-native",
"asyncstorage",
"gunjs",
"gun"
],
"main": "src/index.ts",
"typings": "lib/index.d.ts",
"scripts": {
"prettier": "prettier --write \"src/**/*.ts\"",
"lib": "tsc",
"prepublishOnly": "npm run lib"
},
"peerDependencies": {
"react-native": "*"
},
"dependencies": {
"@types/react-native": "^0.44.8",
"gun": "0.9.x"
},
"devDependencies": {
"prettier": "^1.4.1",
"typescript": "^2.3.4"
}
}