forked from tapjs/tapjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.63 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@tapjs/tapjs",
"private": true,
"workspaces": [
"src/*"
],
"type": "module",
"prettier": {
"semi": false,
"printWidth": 70,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"jsxSingleQuote": false,
"bracketSameLine": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@esbuild-kit/cjs-loader": "^2.4.4",
"@esbuild-kit/esm-loader": "^2.6.5",
"@tapjs/processinfo": "^3.1.4",
"@types/diff": "^5.0.5",
"@types/ms": "^0.7.32",
"@types/mustache": "^4.2.3",
"@types/node": "^20.7.1",
"@types/node-fetch": "^2.6.6",
"@types/npmcli__promise-spawn": "^6.0.1",
"@types/opener": "^1.4.1",
"@types/pacote": "^11.1.6",
"@types/react": "^18.2.23",
"@types/semver": "^7.5.3",
"@types/sinon": "^10.0.17",
"@types/which": "^3.0.0",
"async-hook-domain": "^4.0.1",
"c8": "^8.0.1",
"chalk": "^5.3.0",
"cheerio": "^1.0.0-rc.12",
"chokidar": "^3.5.3",
"clock-mock": "^2.0.2",
"diff": "^5.1.0",
"eleventy-plugin-toc": "^1.1.5",
"events-to-array": "^2.0.3",
"foreground-child": "^3.1.1",
"function-loop": "^4.0.0",
"ink": "^4.4.1",
"ink-testing-library": "^3.0.0",
"is-actual-promise": "^1.0.0",
"jackspeak": "^2.3.6",
"markdown-it": "^13.0.2",
"markdown-it-anchor": "^8.6.7",
"minimatch": "^9.0.1",
"minipass": "^7.0.3",
"mkdirp": "^3.0.1",
"ms": "^2.1.3",
"mustache": "^4.2.0",
"netlify-cli": "^16.4.2",
"nock": "^13.3.2",
"node-fetch": "^3.3.2",
"nx": "^16.9.1",
"nx-cloud": "^16.4.0",
"opener": "^1.5.2",
"pacote": "^17.0.4",
"patch-console": "^2.0.0",
"path-scurry": "^1.9.2",
"polite-json": "^4.0.1",
"prettier": "^2.8.7",
"prismjs": "^1.29.0",
"prismjs-terminal": "^1.2.3",
"react": "^18.2.0",
"react-element-to-jsx-string": "^15.0.0",
"read": "^2.1.0",
"resolve-import": "^1.4.4",
"rimraf": "^5.0.5",
"sinon": "^15.2.0",
"string-length": "^6.0.0",
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
"surge": "^0.23.1",
"sync-content": "^1.0.2",
"tap": "^18.0.0-0",
"trivial-deferred": "^2.0.0",
"tshy": "^1.2.2",
"typedoc": "^0.25.1",
"typescript": "5.2",
"walk-up-path": "^3.0.1",
"which": "^4.0.0",
"yaml": "^2.3.1",
"yaml-types": "^0.3.0"
},
"scripts": {
"start": "npm run start -w src/docs",
"predocsbuild": "npm run bootstrap",
"docsbuild": "npm run build -w src/docs",
"pretest": "rimraf src/test/test-built/dist/node_modules",
"presnap": "rimraf src/test/test-built/dist/node_modules",
"test": "nx run-many -t test",
"test:bootstrap": "bash ./scripts/test-bootstrap.sh",
"snap": "TAP_TYPECHECK=0 TAP_TIMEOUT=240 nx run-many -t snap",
"format": "nx run-many -t format",
"typedoc": "typedoc",
"bootstrap": "bash ./scripts/bootstrap.sh",
"build": "node ./scripts/default-build.mjs",
"pindeps": "node ./scripts/version.mjs pindeps",
"v": "node ./scripts/version.mjs",
"p": "bash ./scripts/bump-changed.sh",
"pub": "npm run v -- pub",
"deploy:docs": "npm run deploy:prod -w src/docs",
"postv": "npm run deploy:docs",
"pj": "node scripts/normalize-package-json.js src/*/package.json"
},
"repository": "https://github.com/tapjs/tapjs",
"license": "BlueOak-1.0.0",
"dependencies": {
"@isaacs/ts-node-temp-fork-for-pr-2009": "^10.9.1",
"glob": "^10.3.10",
"semver": "^7.5.4",
"signal-exit": "4.1"
},
"engines": {
"node": ">=16"
}
}