forked from Sphereon-Opensource/PEX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.28 KB
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
{
"name": "portabl-pex",
"private": true,
"version": "0.0.0",
"description": "A Typescript implementation of the v1 and v2 DIF Presentation Exchange specification",
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"browser": "dist/browser/index.js",
"typings": "dist/main/index.d.ts",
"license": "Apache-2.0",
"keywords": [
"SSI",
"Presentation Exchange",
"Verifiable Credentials",
"Verifiable Presentations",
"Selective Disclosure",
"DIF"
],
"scripts": {
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.main.json",
"build:browser": "tsc -p tsconfig.browser.json",
"build:module": "tsc -p tsconfig.module.json",
"clean": "rimraf node_modules dist coverage",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"{lib,test}/**/*.ts\" --write",
"fix:lint": "eslint . --ext .ts --fix",
"test": "run-s build test:*",
"test:lint": "eslint . --ext .ts",
"test:prettier": "prettier \"{lib,test}/**/*.ts\" --list-different",
"test:unit": "jest",
"test:cov": "jest --ci --coverage && codecov"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@sphereon/pex-models": "^1.2.2",
"@sphereon/ssi-types": "0.8.1-next.6",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"jsonpath": "^1.1.1",
"jwt-decode": "^3.1.2",
"nanoid": "^3.3.4",
"string.prototype.matchall": "^4.0.8",
"uri-js": "^4.4.1"
},
"devDependencies": {
"@portabl/prettier-config": "workspace:*",
"@types/jest": "^29.5.7",
"@types/jsonpath": "^0.2.0",
"@types/node": "18.11.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"codecov": "^3.8.3",
"cspell": "^6.12.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.0",
"jest": "^29.7.0",
"jest-matcher-utils": "^29.7.0",
"npm-run-all": "^4.1.5",
"open-cli": "^7.0.1",
"pretty-format": "^29.7.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "5.1.6"
},
"files": [
"index.ts",
"/dist",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"prettier": {
"singleQuote": true,
"printWidth": 120
}
}