This repository was archived by the owner on Jul 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.85 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.85 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
{
"name": "@relaycorp/relaydev",
"version": "1.0.0a1",
"description": "Development tools for implementers of the Relaynet Protocol Suite",
"scripts": {
"prebuild": "run-s clean",
"build": "tsc -p tsconfig.json",
"build:dev": "run-s build",
"postbuild:dev": "npm link",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"static-checks": "run-p static-checks:*",
"static-checks:lint": "tslint --project .",
"static-checks:prettier": "prettier \"src/**/*.ts\" --list-different",
"clean": "trash build",
"test": "run-s build:dev test:runner",
"test:ci": "run-s test:runner",
"test:runner": "./functional_tests/run.sh"
},
"bin": {
"relaydev": "./build/main/cli.js"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@relaycorp/shared-config": "^1.6.0",
"@types/node": "^15.14.0",
"@types/pkijs": "0.0.10",
"@types/verror": "^1.10.5",
"@types/yargs": "^17.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"trash-cli": "^4.0.0",
"tslint": "^5.18.0",
"typescript": "^3.9.10"
},
"prettier": "@relaycorp/shared-config/.prettierrc.json",
"repository": {
"type": "git",
"url": "git+https://github.com/relaycorp/relaydev.git"
},
"keywords": [
"relaynet"
],
"author": {
"email": "no-reply@relaycorp.tech",
"name": "Relaycorp, Inc.",
"url": "https://relaycorp.tech/"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/relaycorp/relaydev/issues"
},
"dependencies": {
"@peculiar/webcrypto": "^1.1.7",
"@relaycorp/relaynet-core": "^1.58.1",
"buffer-to-arraybuffer": "0.0.6",
"get-stdin": "^8.0.0",
"make-promises-safe": "^5.1.0",
"yargs": "^17.0.1"
},
"publishConfig": {
"access": "public",
"tag": "latest"
}
}