This repository has been archived by the owner on May 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
104 lines (104 loc) · 2.76 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
102
103
104
{
"name": "uport-credentials",
"version": "1.3.5",
"description": "Library for interacting with uport profiles and attestations",
"main": "lib/index.js",
"umd:main": "lib/index.umd.js",
"modules": "lib/index.mjs",
"source": "src/index.ts",
"types": "lib/index.d.ts",
"files": [
"lib",
"dist",
"src",
"esm",
"tutorial"
],
"scripts": {
"test": "jest",
"test:ci": "jest -u --coverage && codecov",
"build:js": "microbundle",
"build:browser": "webpack --config webpack.config.js",
"build": "npm run build:js && npm run test && npm run build:browser",
"build:docs": "echo 'PLEASE UPDATE REFERENCE DOCS MANUALLY'",
"prepublish": "npm run build:js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm run lint && npm run build",
"release": "semantic-release --debug"
},
"author": "Pelle Braendgaard <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/uport-project/uport-credentials.git"
},
"license": "Apache-2.0",
"dependencies": {
"did-jwt": "^4.0.0",
"did-jwt-vc": "^1.0.0",
"did-resolver": "^2.0.0",
"elliptic": "^6.4.1",
"ethr-did-resolver": "^3.0.0",
"mnid": "^0.1.1",
"web-did-resolver": "^1.2.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts",
"!**/node_modules/**"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/nock"
],
"testEnvironment": "node"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "12.0.1",
"@commitlint/config-conventional": "12.0.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/elliptic": "6.4.12",
"@types/jest": "26.0.20",
"@types/mockdate": "2.0.0",
"body-parser": "1.19.0",
"codecov": "3.8.1",
"express": "4.17.1",
"husky": "5.1.3",
"jest": "26.6.3",
"json-loader": "0.5.7",
"microbundle": "0.13.0",
"mockdate": "3.0.3",
"ngrok": "3.4.1",
"nock": "13.0.11",
"prettier": "2.2.1",
"semantic-release": "17.4.2",
"ts-jest": "26.5.3",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-eslint-rules": "5.4.0",
"typedoc": "0.20.32",
"typedoc-plugin-markdown": "3.6.0",
"typescript": "4.2.3",
"uport-transports": "0.2.6",
"webpack": "5.26.0",
"webpack-cli": "4.5.0"
}
}