-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.74 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
{
"name": "testnet-load-generator",
"version": "0.0.1",
"private": true,
"useWorkspaces": true,
"main": "index.js",
"workspaces": [
"_agstate/agoric-servers",
"loadgen",
"loadgen/contract",
"loadgen/firebase/admin",
"runner"
],
"dependencies": {
"agoric": "*"
},
"devDependencies": {
"@endo/eslint-config": "^0.5.1",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-jessie": "^0.0.6",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-prettier": "^3.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"typescript": "~4.7.4"
},
"resolutions": {
"@protobufjs/inquire": "./protobufjs-inquire",
"esm": "agoric-labs/esm#Agoric-built"
},
"scripts": {
"preinstall": "node -e \"process.env.AGORIC_INSTALL && process.exit(0); console.warn('please use: agoric install . For details, see https://agoric.com/documentation/'); process.exit(1)\"",
"lint": "run-s --continue-on-error lint:*",
"lint:format": "yarn prettier --check .",
"lint:packages": "yarn workspaces run lint",
"lint-fix": "run-s --continue-on-error lint-fix:*",
"lint-fix:format": "yarn prettier --write .",
"lint-fix:packages": "yarn workspaces run lint-fix",
"test": "yarn workspaces run test",
"build": "yarn workspaces run build",
"runner": "runner/bin/loadgen-runner",
"loadgen": "agoric deploy loadgen/loop.js"
},
"eslintConfig": {
"root": true,
"extends": [
"@endo"
],
"rules": {
"prettier/prettier": "off"
}
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
}
}