This repository has been archived by the owner on Oct 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.67 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
{
"name": "secure-rm",
"version": "3.0.3",
"description": "Completely erases files by making recovery impossible.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npm run build-ts && npm run lint",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "tsc --noEmit && standard \"**/*.{js,ts}\" --fix --env jest",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test": "jest --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"prepack": "rimraf dist && npm run build"
},
"dependencies": {
"tslib": "^1.10.0",
"rimraf": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/rimraf": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"coveralls": "^3.0.6",
"jest": "^24.8.0",
"standard": "^14.1.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.6.2",
"uuid": "^3.3.3"
},
"author": "Oganexon @oganexon",
"bugs": "https://github.com/oganexon/secure-rm/issues",
"homepage": "https://github.com/oganexon/secure-rm#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/oganexon/secure-rm.git"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/dist",
"/bin"
],
"keywords": [
"privacy",
"secure",
"data erasure",
"file deletion",
"remove",
"delete",
"wipe out",
"clean",
"erase",
"shred",
"overwrite",
"glob"
],
"license": "MIT",
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
}
}