-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.9 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
{
"name": "onyx",
"version": "0.0.0",
"description": "unit testing framework",
"main": "index.js",
"author": "Elijah Kotyluk <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"./packages/*"
]
},
"scripts": {
"bazel:format": "find . -type f \\( -name \"*.bazel\" -or -name WORKSPACE -or -name BUILD -or -name BUILD.bazel \\) ! -path \"*/node_modules/*\" | xargs buildifier -v --warnings=attr-cfg,attr-license,attr-non-empty,attr-output-default,attr-single-file,constant-glob,ctx-actions,ctx-args,depset-iteration,depset-union,dict-concatenation,duplicated-name,filetype,git-repository,http-archive,integer-division,load,load-on-top,native-build,native-package,out-of-order-load,output-group,package-name,package-on-top,positional-args,redefined-variable,repository-name,same-origin-load,string-iteration,unsorted-dict-items,unused-variable",
"bazel:lint": "pnpm bazel:format --lint=warn",
"bazel:lint-fix": "pnpm bazel:format --lint=fix",
"bazel:build": "bazel build //...",
"bazel:test": "bazel test //...",
"lint": "eslint . -c ./.eslintrc.js --ignore-path .eslintignore --ext ts --ext js",
"lint:fix": "eslint . -c ./.eslintrc.js --ignore-path .eslintignore --ext ts --ext js --fix",
"setup:deps": "bazel run -- @pnpm//:pnpm -C $PWD i",
"outdated:deps": "bazel run -- @pnpm//:pnpm -C $PWD outdated"
},
"devDependencies": {
"@bazel/bazelisk": "1.19.0",
"@bazel/buildifier": "6.4.0",
"@bazel/ibazel": "0.23.7",
"@jest/types": "^29.2.1",
"@types/jest": "^27.5.2",
"@types/node": "^18.11.3",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.26.0",
"husky": "^7.0.1",
"jest": "^29.0.0",
"jest-cli": "^28.0.1",
"jest-junit": "^16.0.0",
"lint-staged": "^11.1.2",
"ts-jest": "^29.1.1",
"typescript": "5.3.2"
}
}