-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.18 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
73
74
75
76
77
{
"name": "@relaycorp/relaynet-core",
"version": "1.0.3",
"author": {
"email": "[email protected]",
"name": "Relaycorp, Inc.",
"url": "https://relaycorp.tech/"
},
"description": "Relaynet core library",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"repository": "https://github.com/relaycorp/relaynet-core-js",
"homepage": "https://docs.relaycorp.tech/relaynet-core-js/",
"license": "MIT",
"keywords": [
"awala"
],
"scripts": {
"build": "run-s clean tsc",
"tsc": "tsc -p tsconfig.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"test": "jest --coverage",
"static-checks": "run-p static-checks:*",
"static-checks:lint": "tslint --project .",
"static-checks:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:integration": "jest --config src/integration_tests/jest.config.js",
"doc-api": "typedoc src/index.ts --out build/docs",
"clean": "del-cli build test"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"@peculiar/asn1-schema": "^2.3.8",
"@peculiar/asn1-x509": "^2.3.8",
"@peculiar/webcrypto": "< 2",
"@stablelib/aes-kw": "^1.0.1",
"@types/verror": "^1.10.9",
"asn1js": "^3.0.5",
"buffer-to-arraybuffer": "0.0.6",
"date-fns": "^3.2.0",
"dohdec": "^3.1.0",
"is-valid-domain": "^0.1.6",
"moment": "^2.30.1",
"pkijs": "^3.0.15",
"smart-buffer": "^4.2.0",
"uuid4": "^2.0.3",
"verror": "^1.10.1",
"webcrypto-core": "< 2"
},
"peerDependencies": {
"@peculiar/webcrypto": "< 2",
"webcrypto-core": "< 2"
},
"devDependencies": {
"@relaycorp/shared-config": "^1.14.1",
"@types/jest": "^27.5.0",
"@types/node": "^20.11.0",
"del-cli": "^5.1.0",
"jest": "^27.5.1",
"jest-date-mock": "^1.0.8",
"jest-extended": "^4.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typedoc": "^0.25.7",
"typescript": "^4.9.5"
},
"prettier": "@relaycorp/shared-config/.prettierrc.json",
"publishConfig": {
"access": "public"
}
}