-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.16 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
{
"name": "@block65/demonade",
"version": "2.0.0",
"private": false,
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"bin": {
"demonade": "./bin/index.js"
},
"files": [
"bin/*.js",
"lib/*.js",
"lib/*.d.ts",
"CREDITS.md",
"LICENSE.md"
],
"scripts": {
"bazel:buildifier": "bazel run //:buildifier",
"bazel:format": "find . -type f \\( -name \"*.bzl\" -or -name WORKSPACE -or -name BUILD -or -name BUILD.bazel \\) ! -path \"*/node_modules/*\" ! -path \"*/tmp/*\" | 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": "yarn bazel:format --lint=warn",
"bazel:lint-fix": "yarn bazel:format --lint=fix",
"build": "bazel build //:pkg",
"build:clean": "bazel clean",
"build:watch": "ibazel build",
"test": "bazel test //:unit",
"test:update": "bazel run //:unit_update_snapshots",
"test:watch": "ibazel test //:unit"
},
"dependencies": {
"@block65/custom-error": "^11.0.1",
"@block65/logger": "^12.1.0",
"chokidar": "^3.5.3",
"find-up": "^6.3.0",
"lilconfig": "^2.0.6",
"p-debounce": "^4.0.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"@bazel/bazelisk": "^0.0.0-PLACEHOLDER",
"@bazel/ibazel": "^0.16.2",
"@block65/eslint-config": "8.0.0",
"@jest/globals": "^29.3.1",
"@types/node": "^18.11.18",
"@types/yargs": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.27.4",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"typescript": "4.9.4"
},
"engines": {
"node": ">=16.0.0"
}
}