-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 970 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 970 Bytes
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": "sybil",
"version": "0.0.19",
"description": "Minimum viable decentralized identity",
"main": "./dist/src/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"pretest": "ganache-cli -d sybil &",
"test": "mocha --timeout 10000 dist/test/**/*.js",
"posttest": "pkill -f ganache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agermanidis/sybil.git"
},
"author": "Anastasis Germanidis",
"license": "MIT",
"bugs": {
"url": "https://github.com/agermanidis/sybil/issues"
},
"homepage": "https://sybil.me",
"dependencies": {
"blob-to-buffer": "^1.2.7",
"ipfs": "^0.28.2",
"ipfs-api": "^19.0.0",
"web3": "^1.0.0-beta.33"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.1",
"chai": "^4.1.2",
"ganache-cli": "^6.1.0",
"mocha": "^5.0.5",
"solc": "^0.4.21",
"typescript": "^2.8.1"
}
}