-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.71 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
{
"name": "rules_prerender",
"version": "0.0.0-PLACEHOLDER",
"main": "./packages/rules_prerender/index.mjs",
"typings": "./packages/rules_prerender/index.d.mts",
"type": "module",
"engines": {
"node": "18.17.0",
"pnpm": "8.15.3"
},
"scripts": {
"bazel": "bazel",
"ibazel": "ibazel",
"build": "bazel build //...",
"test": "find . -name WORKSPACE.bazel -printf '%h\\n' | sort | xargs -I {} bash -c '(cd {} && bazel test //...)'",
"lint": "npm run -s eslint -- . --max-warnings 0 --report-unused-disable-directives",
"lint-fix": "npm run -s lint -- --fix",
"lint-commit": "git diff \"${COMMIT}~1..${COMMIT}\" --name-only | npm run -s -- filter-lintable | xargs -P 8 -L 1 -I {} bash -c \"git show \\\"${COMMIT}:{}\\\" --diff-filter=d | npm run -s -- eslint --stdin --stdin-filename \\\"{}\\\"\" --max-warnings 0 --report-unused-disable-directives",
"filter-lintable": "grep '\\.js$\\|\\.cjs$\\|\\.mjs$\\|\\.ts$'",
"eslint": "eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/dgp1130/rules_prerender.git",
"directory": "packages/rules_prerender"
},
"bugs": {
"url": "https://github.com/dgp1130/rules_nodejs/issues"
},
"keywords": [
"bazel",
"static-site-generator"
],
"dependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/markdown-it": "^12.0.1",
"@types/node": "^14.14.13",
"lightningcss": "^1.26.0",
"live-server": "^1.2.2",
"markdown-it": "^12.0.4",
"node-html-parser": "^6.1.5",
"rollup": "^2.78.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@bazel/bazelisk": "latest",
"@bazel/buildifier": "latest",
"@bazel/ibazel": "latest",
"@types/jasmine": "^4.3.1",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"gray-matter": "^4.0.3",
"http-status-codes": "^2.1.4",
"husky": "^7.0.2",
"hydroactive": "^0.1.4",
"jasmine": "4.3.0",
"marked": "^13.0.3",
"nan": "^2.17.0",
"netlify-cli": "^17.33.5",
"node-gyp": "^9.4.0",
"preact": "^10.13.1",
"preact-render-to-string": "^5.2.6",
"tree-kill": "^1.2.2",
"typescript": "5.4.5",
"webdriverio": "^8.39.1",
"zod": "^3.22.2"
},
"pnpm": {
"packageExtensions": {
"unix-dgram": {
"dependencies": {
"nan": "*",
"node-gyp": "*"
}
}
}
}
}