forked from uport-project/ethr-did
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.07 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.07 KB
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
{
"name": "ethr-did",
"version": "1.3.0",
"description": "Create and manage DID documents for ethereum addresses",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"umd:main": "lib/index.umd.js",
"source": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/uport-project/ethr-did.git"
},
"files": [
"lib",
"src",
"LICENSE"
],
"author": "Pelle Braendgaard <pelle.braendgaard@consensys.net>",
"license": "Apache-2.0",
"scripts": {
"test": "jest",
"test:ci": "jest -u --coverage",
"build:js": "microbundle",
"build": "npm run build:js && npm run test",
"prepare": "npm run build",
"release": "semantic-release --debug"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts",
"!**/node_modules/**"
],
"testEnvironment": "node"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/jest": "26.0.19",
"codecov": "3.8.1",
"ganache-cli": "6.12.1",
"jest": "26.6.3",
"microbundle": "0.12.4",
"prettier": "2.2.1",
"semantic-release": "17.3.0",
"truffle-contract": "4.0.31",
"ts-jest": "26.4.4",
"ts-lint": "4.5.1",
"tslint-config-prettier": "1.18.0",
"tslint-eslint-rules": "5.4.0",
"typescript": "4.1.3",
"web3": "1.3.0"
},
"dependencies": {
"buffer": "^6.0.3",
"did-jwt": "^4.8.0",
"did-resolver": "^2.1.2",
"ethjs-contract": "^0.2.3",
"ethjs-provider-http": "^0.1.6",
"ethjs-query": "^0.3.8",
"ethr-did-registry": "0.0.3",
"ethr-did-resolver": "^3.0.3"
}
}