-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.5 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.5 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
{
"name": "prostub",
"version": "1.3.0",
"description": "A TypeScript library for creating mocks.",
"type": "module",
"scripts": {
"prepare": "npm run test && node build.mjs",
"test": "node --test --import ./loader/ts-loader.mjs 'src/**/*.test.ts'",
"test-coverage": "NODE_V8_COVERAGE=$(pwd)/coverage npm run test -- --experimental-test-coverage",
"download-previous-release": "rm -fr ./previous-version && mkdir -p ./previous-version && curl $(npm view prostub dist.tarball) | tar xz -C ./previous-version --strip-components=1",
"compare-api": "npm run download-previous-release && change-detector ./previous-version/index.d.ts ./src/index.ts"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/haringat/prostub.git"
},
"author": "Haringat",
"license": "MIT",
"packageManager": "pnpm@10.20.0",
"devDependencies": {
"@api-extractor-tools/change-detector": "^0.0.1",
"@eslint/compat": "^2.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.10.4",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"dprint": "^0.50.2",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.5.0",
"eslint-plugin-tsdoc": "^0.5.0",
"eslint-plugin-unicorn": "^62.0.0",
"globals": "^16.5.0",
"rollup": "^4.54.0",
"rollup-plugin-dts": "^6.3.0",
"tslib": "^2.8.1",
"typescript": "^6.0.0-dev.20260224",
"terser": "^5.46.0"
}
}