forked from streetsidesoftware/cspell-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 850 Bytes
/
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
{
"name": "cspell-cli",
"version": "5.6.7",
"description": "CLI for cspell: A Spelling Checker for Code!",
"main": "index.js",
"bin": {
"cspell-cli": "index.js"
},
"scripts": {
"version-prerelease": "npm run version-release -- -p",
"version-release": "npx standard-version",
"test": "node ./index.js \"**\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetsidesoftware/cspell-cli.git"
},
"keywords": [
"cspell"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell-cli/issues"
},
"homepage": "https://github.com/streetsidesoftware/cspell-cli#readme",
"files": [
".pre-commit-hooks.yaml",
"index.js"
],
"engines": {
"node": ">=12.13.0"
},
"dependencies": {
"cspell": "^5.9.1"
}
}