-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
{
"name": "github-typos-scan",
"version": "0.1.3",
"main": "src/index.js",
"description": "Typos github scan",
"license": "MIT",
"keywords": [
"cli",
"tools",
"typos",
"word-typos",
"typos-check",
"typos-github-scan"
],
"author": {
"name": "Caio Agiani",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/caioagiani"
},
"homepage": "https://github.com/caioagiani/github-typos-scan",
"repository": {
"type": "git",
"url": "git+https://github.com/caioagiani/github-typos-scan"
},
"bugs": {
"url": "https://github.com/caioagiani/github-typos-scan/issues"
},
"bin": {
"github-typos-scan": "./src/bin/cli.js"
},
"scripts": {
"start": "node src/index.js",
"test": "jest",
"lint": "eslint . --fix --ext .js"
},
"dependencies": {
"commander": "^9.0.0",
"puppeteer": "^13.1.2"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1"
}
}