-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
150 lines (150 loc) · 4.22 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "@agoric/documentation",
"version": "0.2.0",
"description": "Documentation of Agoric products",
"type": "module",
"scripts": {
"docs:dev": "NODE_OPTIONS=--openssl-legacy-provider vitepress dev main",
"docs:build": "yarn lint:check-links && NODE_OPTIONS=--openssl-legacy-provider vitepress build main",
"docs:preview": "NODE_OPTIONS=--openssl-legacy-provider vitepress preview main",
"docs:build-cf": "yarn lint:check-links && DEBUG='vitepress:*' NODE_OPTIONS=--openssl-legacy-provider vitepress build main && cp _redirects dist/",
"test": "ava",
"lint-fix": "yarn lint --fix",
"lint": "eslint 'snippets/**/*.js'",
"format": "node scripts/markdown-js-snippets-linter.mjs 'main/**/*.md' --fix && prettier --write '**/*.md' --config .prettierrc.json",
"lint:format": "node scripts/format.mjs",
"lint:check-links": "node scripts/checkLinks.mjs",
"build": "exit 0"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/Agoric/documentation.git"
},
"keywords": [
"smart",
"contract",
"cryptocurrency",
"exchange",
"tokens"
],
"author": "Agoric",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Agoric/documentation/issues"
},
"homepage": "https://github.com/Agoric/documentation#readme",
"dependencies": {
"@agoric/ertp": "community-dev",
"@agoric/zoe": "community-dev",
"@agoric/zone": "community-dev",
"@endo/errors": "^1.2.7",
"@endo/far": "^1.1.8",
"@endo/marshal": "^1.6.1",
"@endo/pass-style": "^1.4.6",
"@endo/patterns": "^1.4.6",
"typescript": "^4.9.5"
},
"devDependencies": {
"@agoric/cosmic-swingset": "community-dev",
"@agoric/ertp": "community-dev",
"@agoric/notifier": "community-dev",
"@agoric/solo": "community-dev",
"@agoric/store": "community-dev",
"@agoric/vats": "community-dev",
"@endo/bundle-source": "^3.4.2",
"@endo/eventual-send": "^1.2.7",
"@endo/init": "^1.1.6",
"@endo/promise-kit": "^1.1.7",
"@endo/ses-ava": "^1.2.7",
"@typescript-eslint/parser": "^4.33.0",
"ava": "^4.3.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-jessie": "^0.0.6",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsdoc": "^35.5.1",
"eslint-plugin-prettier": "^5.2.1",
"glob": "7.1.7",
"import-meta-resolve": "^2.2.2",
"prettier": "^3.3.3",
"ses": "^1.9.1",
"stylus": "^0.62.0",
"vitepress": "1.3.4"
},
"globals": {
"harden": "readonly"
},
"ava": {
"files": [
"snippets/**/test-*.js"
],
"timeout": "10m"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"plugin:prettier/recommended",
"plugin:jsdoc/recommended"
],
"parser": "@typescript-eslint/parser",
"env": {
"es6": true
},
"globals": {
"assert": "readonly",
"harden": "readonly"
},
"rules": {
"implicit-arrow-linebreak": "off",
"function-paren-newline": "off",
"arrow-parens": "off",
"strict": "off",
"prefer-destructuring": "off",
"no-else-return": "off",
"no-console": "off",
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"no-return-assign": "off",
"no-param-reassign": "off",
"no-restricted-syntax": [
"off",
"ForOfStatement"
],
"no-unused-expressions": "off",
"no-loop-func": "off",
"no-inner-declarations": "off",
"import/prefer-default-export": "off",
"jsdoc/no-undefined-types": "off",
"jsdoc/require-jsdoc": "off",
"jsdoc/require-property-description": "off",
"jsdoc/require-param-description": "off",
"jsdoc/require-returns": "off",
"jsdoc/require-returns-description": "off",
"import/extensions": [
"error",
"always"
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
]
}
},
"eslintIgnore": [
"bundle-*.js"
],
"prettier": {
"trailingComma": "all",
"arrowParens": "avoid",
"singleQuote": true
}
}