-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.38 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
52
53
{
"name": "check-node-types",
"version": "1.0.0",
"description": "Verify @types/node major version matches your engines.node minimum",
"type": "module",
"bin": {
"check-node-types": "dist/cli.mjs"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "rm -rf dist && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript && chmod +x dist/cli.mjs",
"test": "vitest run",
"test:watch": "vitest",
"check-types": "node dist/cli.mjs",
"prepublishOnly": "npm run build && npm run test && npm run check-types"
},
"keywords": [
"typescript",
"node",
"types",
"check",
"engines",
"lint",
"cli"
],
"license": "MIT",
"homepage": "https://github.com/janpaepke/check-node-types#readme",
"bugs": "https://github.com/janpaepke/check-node-types/issues",
"repository": {
"type": "git",
"url": "https://github.com/janpaepke/check-node-types.git"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/node": "^20.0.0",
"@types/semver": "^7.5.0",
"chalk": "^5.6.2",
"commander": "^13.0.0",
"rollup": "^4.28.0",
"semver": "^7.6.0",
"tslib": "^2.8.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}