-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.17 KB
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
{
"name": "@node-core/doc-kit-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nodejs/doc-kit.git"
},
"scripts": {
"lint": "eslint . --no-warn-ignored",
"lint:fix": "eslint --fix . --no-warn-ignored",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "node --test --experimental-test-module-mocks \"packages/*/src/**/*.test.mjs\" \"scripts/**/*.test.mjs\"",
"test:coverage": "c8 node --test --experimental-test-module-mocks \"packages/*/src/**/*.test.mjs\" \"scripts/**/*.test.mjs\"",
"test:ci": "c8 --reporter=lcov node --test --experimental-test-module-mocks \"packages/*/src/**/*.test.mjs\" \"scripts/**/*.test.mjs\" --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=junit --test-reporter-destination=junit.xml --test-reporter=spec --test-reporter-destination=stdout",
"test:update-snapshots": "node --test --experimental-test-module-mocks --test-update-snapshots \"packages/*/src/**/*.test.mjs\" \"scripts/**/*.test.mjs\"",
"test:watch": "node --test --experimental-test-module-mocks --watch \"packages/*/src/**/*.test.mjs\" \"scripts/**/*.test.mjs\"",
"test:e2e": "playwright test",
"prepare": "husky || exit 0",
"run": "node packages/core/bin/cli.mjs",
"watch": "node --watch packages/core/bin/cli.mjs",
"docs:build": "bash scripts/vercel-docs-build.sh",
"changeset": "changeset",
"changeset:version": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@eslint/js": "10.0.1",
"@playwright/test": "~1.60.0",
"@reporters/github": "~2.0.1",
"@types/mdast": "~4.0.4",
"@types/node": "~24.10.1",
"@types/semver": "~7.7.1",
"c8": "~11.0.0",
"eslint": "10.6.0",
"eslint-import-resolver-node": "0.4.0",
"eslint-plugin-import-x": "4.17.0",
"eslint-plugin-jsdoc": "63.0.10",
"eslint-plugin-react-x": "5.9.5",
"globals": "~17.7.0",
"husky": "9.1.7",
"lint-staged": "17.0.8",
"prettier": "3.8.5"
}
}