-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
123 lines (123 loc) · 3.3 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "jolocom-lib",
"version": "5.5.2",
"description": "Unified library for interacting with the Jolocom identity solution",
"main": "js/index.js",
"files": [
"js/"
],
"typings": "js/index.d.ts",
"husky": {
"hooks": {}
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=text-summary mocha --exit",
"clean": "rm -rf ./js",
"prepublish": "yarn clean; yarn build",
"build": "tsc -p .",
"build:watch": "tsc -w -p .",
"test:watch": "mocha -w ./tests/**/*.test.ts",
"test:debug": "mocha --inspect -w ./tests/**/*.test.ts",
"test:integration": "nyc mocha --require ts-node/register ./tests/**/*.integration.ts --exit",
"format": "eslint --fix --ext .ts ./ts",
"generate-api-docs": "typedoc ./ts"
},
"nyc": {
"include": [
"ts/**/*.ts"
],
"exclude": [
"**/types.ts",
"**/*.types.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"text-summary"
],
"all": true,
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/jolocom/jolocom-lib.git"
},
"keywords": [
"Jolocom",
"Self-Sovereign Identity"
],
"author": "Eugeniu Rusu <[email protected]>",
"contributors": [
"Eugeniu Rusu <[email protected]>",
"Natascha Wittenberg <[email protected]>",
"Charles Cunningham <[email protected]>",
"Lukas Kaser <[email protected]>"
],
"bugs": {
"url": "https://github.com/jolocom/jolocom-lib/issues"
},
"license": "MIT",
"homepage": "https://github.com/jolocom/jolocom-lib#readme",
"dependencies": {
"@hawkingnetwork/ed25519-hd-key-rn": "^1.0.1",
"@jolocom/jolo-did-registrar": "1.0.2",
"@jolocom/jolo-did-resolver": "^1.0.0",
"@jolocom/local-resolver-registrar": "^1.0.1",
"@jolocom/native-core": "^1.0.0",
"@jolocom/protocol-ts": "^0.6.1",
"@jolocom/vaulted-key-provider": "^0.7.4",
"@types/sinon": "^9.0.5",
"bip39": "^3.0.2",
"class-transformer": "0.3.1",
"create-hash": "1.2.0",
"did-resolver": "2.0.0",
"ethereumjs-util": "^6.1.0",
"hdkey": "^2.0.1",
"json-logic-js": "^2.0.0",
"jsonld": "^1.6.1",
"jsontokens": "^1.0.0",
"node-fetch": "^2.6.1",
"reflect-metadata": "^0.1.13",
"rfc4648": "^1.4.0",
"secrets.js-grempe": "^1.1.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/bip39": "^2.4.2",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^11.9.4",
"@types/sinon-chai": "^3.2.4",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"chai": "^4.2.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.0.2",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"istanbul": "^0.4.5",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"precise-commits": "^1.0.2",
"prettier": "^1.18.2",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.19",
"ts-node": "^10.7.0",
"typedoc": "^0.14.2",
"typescript": "4.6.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}