-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 999 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
{
"name": "gravity-protocol",
"version": "0.1.2",
"description": "Sample implementation of the protocol underlying the Gravity social network.",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/",
"lint-fix": "eslint src/ --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/npfoss/gravity-protocol.git"
},
"author": "Nate Foss",
"license": "MIT",
"bugs": {
"url": "https://github.com/npfoss/gravity-protocol/issues"
},
"homepage": "https://www.gravitynet.io",
"dependencies": {
"buffer": "^5.2.1",
"ipfs": "^0.38.1",
"ipns": "^0.6.1",
"libsodium-wrappers": "^0.7.4",
"multihashes": "^0.4.15",
"multihashing": "^0.3.3",
"node-rsa": "^1.0.5",
"peer-id": "~0.12.5",
"pull-stream": "^3.6.13"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.18.0"
}
}