forked from ceramicstudio/js-3id-did-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.78 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
{
"name": "identity-wallet",
"version": "1.3.0",
"description": "Create and manage identities",
"main": "lib/identity-wallet.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "eslint ./src --ext .js,.ts",
"test": "jest --coverage --runInBand",
"build:es5": "rm -rf ./lib; babel src --out-dir lib",
"build:dist": "./node_modules/.bin/webpack --config webpack.config.js --mode=development",
"build:dist:dev": "./node_modules/.bin/webpack --config webpack.dev.config.js --mode=development",
"build:dist:prod": "./node_modules/.bin/webpack --config webpack.config.js --mode=production --output-filename identity-wallet.min.js",
"build": "npm run build:es5; npm run build:dist; npm run build:dist:prod",
"prepublishOnly": "npm run build; npm run generate-readme",
"prepare": "npm run build",
"generate-readme": "cp readme-template.md README.md; jsdoc2md --configure ./jsdoc2md.json -g none -d 3 'src/**/*.ts' >> README.md"
},
"browser": {
"fs": false,
"child_process": false
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"node_modules",
"lib"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/3box/identity-wallet-js.git"
},
"author": "3box <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/3box/identity-wallet-js/issues"
},
"homepage": "https://github.com/3box/identity-wallet-js#readme",
"dependencies": {
"3id-blockchain-utils": "^0.4.0",
"@babel/runtime": "^7.4.5",
"@ethersproject/hdnode": "^5.0.1",
"@ethersproject/wallet": "^5.0.1",
"did-jwt": "^4.4.0",
"events": "^3.2.0",
"fast-json-stable-stringify": "^2.1.0",
"ipfs-did-document": "^1.2.3",
"ipld-dag-cbor": "^0.15.3",
"js-sha256": "^0.9.0",
"multihashes": "^1.0.1",
"rpc-utils": "^0.1.2",
"store": "^2.0.12",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/elliptic": "^6.4.12",
"@types/jest": "^26.0.7",
"@types/node": "^14.0.26",
"@types/store": "^2.0.2",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.1.0",
"cids": "^0.8.3",
"eslint": "^7.5.0",
"eslint-config-3box": "^0.1.2",
"jest": "^26.1.0",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^6.0.1",
"prettier": "^2.0.5",
"typescript": "^3.9.7",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12"
}
}