This repository has been archived by the owner on Apr 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
{
"name": "@dxos/echo",
"version": "2.6.17",
"description": "Eventually Consistent Hierarchical Object Database.",
"homepage": "https://github.com/dxos/echo#readme",
"bugs": {
"url": "https://github.com/dxos/echo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dxos/echo.git"
},
"license": "AGPL-3.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/semistandard/**",
"**/eslint-config-semistandard/**",
"**/eslint-config-standard/**",
"**/eslint-config-standard-jsx/**",
"**/eslint-plugin-standard/**",
"**/standard-engine/**",
"**/@dxos/node-spawner/**"
]
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"pre-commit": [
"lint:staged",
"lint:lockfile"
],
"scripts": {
"build": "wsrun -t build",
"depcheck": "wsrun depcheck",
"coverage": "wsrun -s coverage",
"test": "wsrun -s test",
"lint": "wsrun lint",
"lint:staged": "lint-staged",
"lint:lockfile": "lockfile-lint --path yarn.lock --allowed-hosts yarn npm codeload.github.com --validate-https",
"lint:version": "version-check",
"sort-package-json": "lerna exec npx sort-package-json",
"validate": "npm ls"
},
"devDependencies": {
"@dxos/version-check": "^0.1.5",
"eslint": "^7.7.0",
"husky": "^4.2.5",
"lerna": "^3.11.1",
"lint-staged": "^8.1.0",
"lockfile-lint": "^4.3.7",
"wsrun": "^5.2.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:staged && npm run lint:lockfile"
}
}
}