forked from decentralized-identity/DIDComm-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "DIDComm-js",
"version": "0.6.0",
"description": "Cryptographic envelope layer of DIDComm written in Typescript",
"contributors": [
{
"name": "Daniel Bluhm",
"email": "[email protected]"
},
{
"name": "Joe Genereux",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/decenetralized-identity/DIDComm-js"
},
"license": "Apache-2.0",
"dependencies": {
"@types/libsodium-wrappers": "^0.7.5",
"base-58": "0.0.1",
"libsodium-wrappers": "^0.7.5"
},
"main": "lib/index.umd.js",
"types": "lib/index.d.ts",
"source": "src/index.ts",
"scripts": {
"build:js": "./node_modules/.bin/microbundle -f umd",
"build": "npm run build:js && npm run test",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"test": "jest --runInBand",
"version": "git add -A src"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"jest": "^24.9.0",
"microbundle": "^0.11.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
}
}