forked from decentralized-identity/ethr-did-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.84 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
{
"name": "ethr-did-resolver",
"version": "0.2.0",
"description": "Resolve DID documents around ethereum addresses",
"main": "lib/register.js",
"repository": {
"type": "git",
"url": "https://github.com/uport-project/ethr-did-resolver.git"
},
"files": [
"dist",
"lib",
"contracts",
"src",
"LICENSE",
"babel-preset.js",
".babelrc"
],
"author": "Pelle Braendgaard <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"test": "jest",
"build:es5": "./node_modules/.bin/babel src -d lib",
"build:webpack": "./node_modules/.bin/webpack lib/register.js",
"build": "yarn build:es5 && yarn test && yarn build:webpack",
"prepublishOnly": "yarn build"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testURL": "http://localhost/"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"ganache-cli": "^6.1.0",
"jest": "^22.4.3",
"jsdom": "11.11.0",
"regenerator-runtime": "^0.11.1",
"standard": "^11.0.0",
"truffle-contract": "^3.0.4",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
},
"dependencies": {
"babel-plugin-module-resolver": "^3.1.1",
"babel-runtime": "^6.26.0",
"buffer": "^5.1.0",
"did-resolver": "0.0.6",
"ethjs-abi": "^0.2.1",
"ethjs-contract": "^0.1.9",
"ethjs-provider-http": "^0.1.6",
"ethjs-query": "^0.3.5",
"ethr-did-registry": "^0.0.3"
},
"standard": {
"ignore": [
"lib/**"
],
"globals": [
"it",
"describe",
"expect",
"jest",
"beforeAll",
"beforeEach",
"afterAll",
"afterEach"
]
}
}