forked from jolocom/jolocom-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.41 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
{
"name": "jolocom-lib",
"version": "2.2.4",
"description": "Unified library for interacting with the Jolocom identity solution",
"main": "js/index.js",
"typings": "js/index.d.ts",
"scripts": {
"test": "yarn clean; nyc mocha --opts ./mocha.opts ./tests/**/*.test.ts",
"clean": "rm -rf ./js",
"prepublish": "yarn clean; tsc -p ./tsconfig.json",
"test:watch": "mocha --opts ./mocha.opts -w ./tests/**/*.test.ts",
"test:single": "nyc -r lcov -r text mocha --opts ./mocha.opts",
"test:integration": "mocha --opts ./mocha.opts ./tests/**/*.integration.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]>",
"Charleen Fei <[email protected]>",
"Katarzyna Szawan <[email protected]>"
],
"bugs": {
"url": "https://github.com/jolocom/jolocom-lib/issues"
},
"license": "MIT",
"homepage": "https://github.com/jolocom/jolocom-lib#readme",
"dependencies": {
"base64url": "^3.0.0",
"bip32": "^1.0.2",
"class-transformer": "^0.1.10",
"create-hash": "^1.2.0",
"cred-types-jolocom-core": "^0.0.9",
"detect-node": "^2.0.4",
"ethereumjs-util": "^5.2.0",
"form-data": "^2.3.2",
"jolocom-registry-contract": "^0.1.7",
"json-logic-js": "^1.2.2",
"jsonld": "^1.0.1",
"jsontokens": "^0.7.8",
"node-fetch": "^2.1.2",
"qrcode": "^1.2.0",
"reflect-metadata": "^0.1.12",
"sinon-chai": "^3.2.0",
"tiny-secp256k1": "^1.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^2.2.43",
"@types/node": "^9.4.0",
"chai": "^4.1.2",
"ganache-core": "^2.2.1",
"ipfsd-ctl": "^0.39.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"nyc": "^12.0.2",
"sinon": "^6.0.0",
"source-map-support": "^0.4.18",
"ts-node": "^6.1.1",
"typescript": "^3.0.1",
"web3": "^1.0.0-beta.35"
}
}