This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
78 lines (78 loc) · 2.07 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
78
{
"name": "ipfs-social-proof",
"version": "0.0.2",
"description": "IPFS-based Identity & Social Proof",
"leadMaintainer": "David Dahl <[email protected]>",
"main": "src/index.js",
"scripts": {
"bundle": "browserify src/index.js > bundle.js",
"serve_test": "http-server test -a 127.0.0.1 -p 8899",
"start": "npm run bundle && echo 'Bundle complete at ./bundle.js'",
"test_bundle": "browserify test/index.js > test/bundle.js",
"test:browser": "./node_modules/karma/bin/karma start karma.conf.js",
"test": "mocha",
"make": "./make.sh",
"client": "./run-client.sh"
},
"keywords": [
"ipfs",
"js-ipfs",
"identity",
"social proof"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/IBM/ipfs-social-proof"
},
"engines": {
"node": ">6.0.0",
"npm": ">3.0.0"
},
"bugs": {
"url": "https://github.com/IBM/ipfs-social-proof/issues"
},
"homepage": "https://github.com/IBM/ipfs-social-proof",
"devDependencies": {
"brfs": "^2.0.1",
"browserify": "^14.5.0",
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"concat-stream": "^1.6.0",
"dirty-chai": "^2.0.1",
"eslint": "^5.6.0",
"hat": "0.0.3",
"http-server": "~0.9.0",
"karma": "^3.0.0",
"karma-browserify": "^5.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"mocha": "^5.2.0",
"opn": "^5.4.0",
"watchify": "^3.11.0"
},
"dependencies": {
"@protobufjs/base64": "^1.1.2",
"buffer": "^5.2.1",
"gist-client": "^1.0.7",
"ipfs": "^0.32.2",
"ipfs-pubsub-room": "^1.4.0",
"level-browserify": "^2.0.0",
"multihashing-async": "^0.5.1",
"neo-async": "^2.6.0",
"node-fetch": "^2.2.1",
"node-forge": "^0.7.6",
"pouchdb": "^7.0.0",
"pouchdb-find": "^7.0.0",
"pouchdb-upsert": "^2.2.0",
"text-encoding": "^0.6.4",
"url-parse": "^1.4.3",
"valid-url": "^1.0.9"
},
"contributors": [
"David Dahl <[email protected]>",
"Tyler Yasaka <[email protected]>",
"Calvin Deng @cdeng001"
]
}