-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.54 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
{
"name": "@jolocom/protocol-ts",
"version": "0.6.1",
"description": "Jolocom SSI protocol typescript definitions - jolocom.io",
"main": "dist/index.js",
"files": [
"dist",
"lib",
"index.ts"
],
"scripts": {
"clean": "rm -rf dist",
"prepublish": "yarn clean; yarn build",
"build": "tsc -p .",
"build:watch": "tsc -w -p .",
"format": "eslint --fix --ext .ts .",
"generate-api-docs": "typedoc ./ts"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jolocom/jolocom-protocol-ts.git"
},
"keywords": [
"Jolocom",
"Self-Sovereign Identity",
"SSI",
"jolocom-sdk",
"typescript"
],
"author": "Jolocom Dev <[email protected]>",
"contributors": [],
"bugs": {
"url": "https://github.com/jolocom/jolocom-protocol-ts/issues"
},
"license": "MIT",
"homepage": "https://github.com/jolocom/jolocom-protocol-ts#readme",
"dependencies": {
"cred-types-jolocom-core": "^0.0.11"
},
"devDependencies": {
"@types/node": "^11.9.4",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.0.2",
"eslint": "^5.16.0",
"husky": "^3.0.5",
"source-map-support": "^0.5.10",
"ts-node": "^8.0.2",
"typedoc": "^0.14.2",
"typescript": "^3.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}