-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 799 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 799 Bytes
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
{
"name": "jolocom-cli",
"version": "1.9.2",
"files": [
"cli.js",
"dist/*.js"
],
"description": "CLI interface for a Jolocom Self Sovereign Identity",
"main": "cli.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "rm -rf dist && tsc -p ."
},
"bin": {
"jolocom-cli": "cli.js"
},
"author": "charles cunningham",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"hardware_key_provider": "^0.4.8",
"jolocom-lib": "^4.2.8",
"jolocom-lib-stax-connector": "^0.3.1",
"typedarray-to-buffer": "^3.1.5",
"yargs": "^13.2.2"
},
"devDependencies": {
"@types/node": "^11.13.2",
"@types/yargs": "^13.0.2",
"prettier": "^1.17.0",
"ts-node": "^8.0.3",
"typescript": "^3.9.7"
}
}