This repository was archived by the owner on Feb 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.3 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.3 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@transmute/element-lib",
"version": "0.8.4",
"description": "Experimental Sidetree Protocol based DID Method `elem` with Ethereum and IPFS",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/decentralized-identity/element.git"
},
"scripts": {
"services:start": "./scripts/start_services.sh",
"services:stop": "./scripts/stop_services.sh",
"services:healthcheck": "./scripts/healthcheck.sh",
"ipfs:start": "./scripts/ipfs/start.sh",
"ipfs:stop": "./scripts/ipfs/stop.sh",
"ganache:start": "./scripts/ganache/start.sh",
"ganache:stop": "./scripts/ganache/stop.sh",
"couchdb:start": "./scripts/couchdb/start.sh",
"couchdb:stop": "./scripts/couchdb/stop.sh",
"lint": "eslint ./src --fix",
"pretest": "npm run services:start",
"test": "NODE_OPTIONS=--max_old_space_size=4096 jest --runInBand ",
"precoverage": "npm run services:start",
"coverage": "jest --runInBand --coverage ",
"test:contracts": "npx truffle test",
"pretest:contracts": "npm run services:start",
"contracts:migrate:dev": "truffle migrate --network development --reset",
"contracts:migrate:ropsten": "truffle migrate --network ropsten"
},
"jest": {
"testPathIgnorePatterns": [
"./test",
"__fixtures__"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"@transmute/did-key-x25519": "^0.2.1-unstable.3",
"@transmute/did-wallet": "0.0.0-6",
"@transmute/es256k-jws-ts": "0.0.4",
"@truffle/contract": "^4.2.14",
"@truffle/hdwallet-provider": "^1.0.40",
"@types/webassembly-js-api": "0.0.2",
"acorn": "^7.3.1",
"base64url": "^3.0.1",
"bip39": "^2.5.0",
"crypto-ld": "^3.7.0",
"did-resolver": "0.0.6",
"ethereumjs-util": "^6.1.0",
"fast-json-patch": "^2.2.1",
"hdkey": "^1.1.1",
"ipfs-api": "^26.1.2",
"ipfs-http-client": "^33.1.1",
"ipfs-unixfs": "^0.1.16",
"ipld-dag-pb": "^0.15.3",
"jsonschema": "^1.2.4",
"leveldown": "^5.4.1",
"memdown": "^4.1.0",
"merkle-tools": "^1.4.0",
"moment": "^2.24.0",
"multihashes": "^0.4.15",
"nanobus": "^4.4.0",
"node-couchdb": "^1.3.0",
"node-fetch": "^2.6.0",
"node-localstorage": "^1.3.1",
"pouchdb": "^7.1.1",
"pouchdb-adapter-http": "^7.1.1",
"pouchdb-adapter-idb": "^7.1.1",
"pouchdb-adapter-leveldb": "^7.1.1",
"pouchdb-adapter-memory": "^7.1.1",
"rxdb": "^8.5.0",
"rxjs": "^6.5.2",
"secp256k1": "^3.6.2",
"web3": "^1.2.11",
"winston": "^3.2.1"
},
"devDependencies": {
"@transmute/eslint-config": "0.1.0",
"chai": "^4.2.0",
"dotenv": "^7.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.2.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-security": "^1.4.0",
"faker": "^4.1.0",
"ganache-cli": "^6.9.1",
"ganache-time-traveler": "^1.0.14",
"go-ipfs": "0.4.22",
"jest": "^24.5.0",
"jsonld": "^2.0.1",
"jsonld-signatures": "^4.5.1",
"jsonwebtoken": "^8.5.1",
"prettier": "^2.0.5",
"truffle": "^5.1.36",
"truffle-assertions": "^0.9.2",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=10.0.0"
}
}