forked from endojs/endo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.02 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
83
84
85
86
{
"name": "@endo/cli",
"version": "2.3.0",
"private": true,
"description": "Endo command line interface",
"keywords": [],
"author": "Endo contributors",
"license": "Apache-2.0",
"homepage": "https://github.com/endojs/endo/blob/master/packages/cli/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/endojs/endo.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/endojs/endo/issues"
},
"bin": {
"endo": "./bin/endo"
},
"type": "module",
"exports": {},
"scripts": {
"build": "exit 0",
"prepack": "tsc --build tsconfig.build.json",
"postpack": "git clean -f '*.d.ts*'",
"lint": "yarn lint:types && yarn lint:eslint",
"lint-fix": "eslint --fix .",
"lint:eslint": "eslint .",
"lint:types": "tsc",
"test": "exit 0"
},
"dependencies": {
"@endo/bundle-source": "^3.3.0",
"@endo/compartment-mapper": "^1.2.0",
"@endo/daemon": "^2.4.0",
"@endo/errors": "^1.2.3",
"@endo/eventual-send": "^1.2.3",
"@endo/exo": "^1.5.1",
"@endo/far": "^1.1.3",
"@endo/import-bundle": "^1.2.0",
"@endo/lockdown": "^1.0.8",
"@endo/pass-style": "^1.4.1",
"@endo/patterns": "^1.4.1",
"@endo/promise-kit": "^1.1.3",
"@endo/stream-node": "^1.1.3",
"@endo/where": "^1.0.6",
"commander": "^5.0.0",
"open": "^9.1.0",
"ses": "^1.6.0"
},
"devDependencies": {
"ava": "^6.1.3",
"babel-eslint": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.5",
"typescript": "5.5.2"
},
"files": [
"LICENSE*",
"SECURITY*",
"src"
],
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": [
"plugin:@endo/daemon"
]
},
"ava": {
"files": [
"test/**/test-*.*",
"test/**/*.test.*"
],
"timeout": "2m"
},
"typeCoverage": {
"atLeast": 86.18
}
}