forked from decentralized-identity/did-jwt-vc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.77 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
{
"name": "did-jwt-vc",
"version": "1.0.4",
"description": "Create and verify W3C Verifiable Credentials and Presentations in JWT format",
"main": "lib/index.js",
"source": "src/index.ts",
"types": "lib/index.d.ts",
"files": [
"lib",
"src",
"esm",
"tutorial"
],
"scripts": {
"test": "jest",
"build": "npm run format && npm test && npm run build:js",
"build:js": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"release": "semantic-release --debug",
"test:ci": "jest --coverage && codecov",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"author": "mi-xu",
"license": "ISC",
"dependencies": {
"did-jwt": "^4.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/decentralized-identity/did-jwt-vc.git"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts",
"!**/node_modules/**"
],
"testEnvironment": "node"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/faker": "4.1.12",
"@types/jest": "26.0.10",
"codecov": "3.7.2",
"did-resolver": "2.0.1",
"ethr-did": "1.1.0",
"faker": "4.1.0",
"jest": "26.4.0",
"prettier": "2.0.5",
"semantic-release": "17.1.1",
"ts-jest": "26.2.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-eslint-rules": "5.4.0",
"typescript": "3.9.7"
}
}