-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.49 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
{
"name": "files-spell-checker",
"version": "1.0.0",
"private": false,
"description": "A Node.js application to scan file names, directory paths, and file contents to alert for spell mistakes within the names via log.",
"repository": {
"type": "git",
"url": "git://github.com/orassayag/files-spell-checker.git"
},
"keywords": [
"scan",
"paths",
"files",
"directories",
"cspell",
"nspell",
"spell-check"
],
"license": "UNLICENSED",
"author": "Or Assayag <orassayag@gmail.com>",
"contributors": [
{
"name": "Or Assayag",
"email": "orassayag@gmail.com",
"url": "https://github.com/orassayag"
}
],
"main": "src/scripts/scan.script.js",
"files": [
"src",
".eslintignore",
".eslintrc",
".gitignore",
".jsbeautifyrc",
".npmignore",
"INSTRUCTIONS.md",
"package-lock.json",
"package.json",
"README.md"
],
"scripts": {
"backup": "node src/scripts/backup.script.js",
"sand": "node src/tests/sandbox.test.js",
"start": "node src/scripts/scan.script.js",
"postinstall": "node src/scripts/initiate.script.js",
"stop": "taskkill -f -im node.exe"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"byline": "^5.0.0",
"dictionary-en": "^4.0.0",
"fs-extra": "^11.3.0",
"is-reachable": "^5.2.1",
"log-update": "^4.0.0",
"nspell": "^2.1.5"
},
"devDependencies": {
"eslint": "^9.22.0"
}
}