-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 1.77 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
{
"name": "shredfile",
"version": "1.1.0",
"description": "A simple wrapper to the Unix shred command.",
"main": "index.js",
"scripts": {
"lint": "node_modules/.bin/eslint '**/*.js'",
"format": "node_modules/.bin/prettier '**/*.{js,json}' --write",
"test": "make test",
"docs": "jsdoc2md index.js > API.md"
},
"repository": {
"type": "git",
"url": "git@github.com:kylefarris/shredder.git"
},
"keywords": [
"shred",
"shredder",
"shred file",
"unix shred",
"shred command",
"shredfile",
"srm",
"wipe",
"dod",
"zero-out",
"secure delete",
"secure remove",
"security",
"remove file",
"delete file"
],
"author": "Kyle Farris <kyle.farris@infotechinc.com> (https://infotechinc.com)",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"bugs": {
"url": "https://github.com/kylefarris/shredder/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run docs && npm run format && npm run lint",
"pre-push": "npm run test"
}
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cli-progress": "^3.8.2",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.2.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jsdoc-to-markdown": "^6.0.1",
"mocha": "^8.1.3",
"prettier": "^2.1.2"
}
}