generated from docknetwork/es6-library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.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
{
"name": "@docknetwork/universal-wallet",
"version": "2.1.1",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/docknetwork/wallet"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.4",
"@babel/node": "^7.15.4",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-wasm": "^5.1.0",
"@types/jest": "^26.0.24",
"@types/node": "^14.14.35",
"babel-jest": "24.5.0",
"concurrently": "^4.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-sonarjs": "0.5.0",
"glob": "^7.1.6",
"jest": "24.5.0",
"jsdoc": "^3.6.3",
"rollup": "2.28.1",
"typescript": "^4.2.3",
"@docknetwork/sdk": "2.5.1"
},
"scripts": {
"lint": "eslint \"src/**/*.js\"",
"build": "rollup -c",
"watch": "rollup -c -w",
"example-fs-wallet": "npx babel-node example/example-fs-wallet",
"example-edv-wallet": "npx babel-node example/example-edv-wallet",
"example-edv-http": "npx babel-node example/example-edv-http-storage",
"run-examples": "yarn example-fs-wallet && yarn example-edv-wallet && yarn example-edv-http",
"test": "jest --verbose ./tests",
"test-wallet": "jest --verbose ./tests/wallet",
"test-edvwallet": "jest --verbose ./tests/edv-wallet",
"test-keys": "jest --verbose ./tests/keys",
"test-creds": "jest --verbose ./tests/credentials",
"docs": "mkdir out && touch out/.nojekyll && jsdoc src -r -c .jsdoc -d out/reference",
"type-check": "tsc --allowJs --checkJs --noEmit --moduleResolution node --resolveJsonModule --target ES6 --skipLibCheck true --allowSyntheticDefaultImports true"
},
"dependencies": {
"@digitalbazaar/ed25519-verification-key-2018": "3.1.1",
"@digitalbazaar/ed25519-verification-key-2020": "3.3.0",
"@digitalbazaar/x25519-key-agreement-key-2019": "5.0.1",
"@digitalbazaar/x25519-key-agreement-key-2020": "2.1.0",
"@digitalbazaar/minimal-cipher": "4.0.2",
"@peculiar/webcrypto": "^1.1.6",
"babel-polyfill": "^6.26.0",
"base58-universal": "1.0.0"
},
"optionalDependencies": {
"@digitalbazaar/edv-client": "^11.3.2"
}
}