-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.51 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
{
"name": "tsd-lite-cli",
"version": "4.1.0",
"description": "Test runner for testing TypeScript typings. CLI over tsd-lite, a per-file version of tsd",
"license": "MIT",
"homepage": "https://github.com/asd-xiv/tsd-lite-cli/#readme",
"bugs": {
"url": "https://github.com/asd-xiv/tsd-lite-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asd-xiv/tsd-lite-cli.git"
},
"author": {
"name": "Andrei Dumitrescu",
"url": "https://github.com/andreidmt"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"tag": "latest"
},
"keywords": [
"cli",
"typescript",
"types",
"test",
"typings",
"typing-test",
"tsd",
"tsd-lite",
"test-runner"
],
"sideEffects": false,
"type": "module",
"bin": {
"tsd-lite": "bin/tsd-lite.js"
},
"files": [
"bin",
"lib",
"docs"
],
"scripts": {
"----UTIL": "",
"prepare": "git config core.hooksPath .githooks",
"setup": "npm ci --cache .npm --prefer-offline --no-audit",
"update": "ncu --interactive",
"postupdate": "npm audit fix",
"format": "npm run lint.js -- --fix",
"----TEST": "",
"test": "tape 'lib/**/*.test.js' | tap-diff",
"test.coverage": "c8 npm run test",
"test.coverage-submit": "c8 --reporter=text-lcov npm run test | coveralls",
"typecheck": "tsc --noEmit",
"----LINT": "",
"lint": "npm run lint.js && npm run lint.md",
"lint.js": "eslint .",
"lint.md": "markdownlint '*.md' 'src/**/*.md'",
"----BUILD": "",
"release": "semantic-release"
},
"lint-staged": {
"*.{ts,js}": "eslint --quiet",
"*.json": "prettier",
"*.md": "markdownlint",
".circleci/config.yml": "circleci config validate"
},
"dependencies": {
"commander": "^11.0.0",
"fast-glob": "^3.3.0"
},
"peerDependencies": {
"@tsd/typescript": "^4.x || ^5.x",
"tsd-lite": "^0.6.0"
},
"devDependencies": {
"@asd14/eslint-config": "^10.3.0",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.3.3",
"@types/tape": "^5.6.0",
"c8": "^8.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.44.0",
"lint-staged": "^13.2.3",
"markdownlint-cli": "^0.35.0",
"npm-check-updates": "^16.10.13",
"prettier": "^2.8.8",
"semantic-release": "^21.0.6",
"tap-diff": "^0.1.1",
"tape": "^5.6.3",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18"
}
}