This repository has been archived by the owner on Jun 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "muport-core",
"version": "0.4.1",
"description": "Create and use µPort identities",
"main": "lib/muport.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest --coverage",
"build": "node_modules/.bin/babel src --out-dir lib",
"prepublish": "npm run build",
"generate-readme": "cp readme-template.md README.md; ./node_modules/.bin/jsdoc2md -d 2 src/muport.js >> README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3box/muport-core-js.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/3box/muport-core-js/issues"
},
"homepage": "https://github.com/3box/muport-core-js#readme",
"dependencies": {
"babel-runtime": "^6.26.0",
"bip39": "^2.5.0",
"bluebird": "^3.5.1",
"bs58": "^4.0.1",
"did-jwt": "0.0.8",
"did-resolver": "0.0.4",
"ethereum-claims-registry": "0.0.4",
"ethereumjs-tx": "^1.3.5",
"ethereumjs-wallet": "^0.6.0",
"ethers": "^3.0.24",
"ethr-did-registry": "0.0.3",
"ipfs-mini": "^1.1.2",
"muport-did-resolver": "^0.2.0",
"secrets.js": "^0.1.8",
"tweetnacl": "^1.0.0",
"tweetnacl-util": "^0.15.0",
"web3-eth-abi": "^1.0.0-beta.34"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"ganache-cli": "^6.1.3",
"ipfsd-ctl": "^0.37.5",
"jest": "^23.2.0",
"jsdoc-to-markdown": "^4.0.1",
"nock": "^9.3.3",
"web3": "^1.0.0-beta.34"
}
}