forked from decentralized-identity/ethr-did-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.5 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ethr-did-resolver",
"version": "3.0.3",
"description": "Resolve DID documents around ethereum addresses",
"main": "dist/ethr-did-resolver.js",
"source": "src/ethr-did-resolver.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/decentralized-identity/ethr-did-resolver.git"
},
"files": [
"index.d.ts",
"dist",
"lib",
"contracts",
"src",
"LICENSE",
"babel-preset.js",
".babelrc"
],
"author": "Pelle Braendgaard <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "microbundle",
"lint": "eslint \"src/**/*.js\"",
"format": "prettier --write \"src/**/*.js\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run build",
"release": "semantic-release --debug",
"test": "jest",
"test-with-coverage": "jest --coverage && codecov"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testURL": "http://localhost/",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"babel-jest": "26.6.3",
"codecov": "3.8.1",
"eslint": "7.15.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"ganache-cli": "6.10.2",
"husky": "4.3.6",
"jdom": "3.2.1",
"jest": "26.6.3",
"microbundle": "0.12.4",
"prettier": "2.2.1",
"regenerator-runtime": "0.13.7",
"semantic-release": "17.3.0",
"truffle-contract": "3.0.7"
},
"dependencies": {
"bs58": "^4.0.1",
"buffer": "^6.0.0",
"did-resolver": "2.1.2",
"elliptic": "^6.5.3",
"ethjs-abi": "^0.2.1",
"ethjs-contract": "^0.2.0",
"ethjs-provider-http": "^0.1.6",
"ethjs-query": "^0.3.5",
"ethr-did-registry": "^0.0.3",
"js-sha3": "^0.8.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"standard": {
"ignore": [
"lib/**"
],
"globals": [
"it",
"describe",
"expect",
"jest",
"beforeAll",
"beforeEach",
"afterAll",
"afterEach"
]
}
}