This repository has been archived by the owner on Aug 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.84 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "secure-rm",
"version": "5.0.0",
"description": "Data erasure solution for files and drives",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "yarn lint && yarn build-ts",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "standard \"**/*.{js,ts}\" --fix --env jest",
"test": "jest --verbose",
"coverage": "jest --coverage --coverageDirectory=./coverage",
"watch-test": "jest --verbose --watchAll",
"clean": "rimraf dist coverage",
"prepack": "npm run clean && npm run build",
"release:prepare": "shipjs prepare",
"release:trigger": "shipjs trigger"
},
"dependencies": {
"fs-extra": "^9.0.0",
"tslib": "^1.11.2"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"jest": "^26.0.1",
"jest-extended": "^0.11.5",
"shipjs": "^0.18.3",
"standard": "^14.3.3",
"typescript": "^3.8.3"
},
"author": "Oganexon @oganexon",
"bugs": "https://github.com/secure-rm/core/issues",
"homepage": "https://www.secure-rm.com",
"repository": {
"type": "git",
"url": "git+https://github.com/secure-rm/core.git"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/dist"
],
"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"
],
"validate": [
"typescript",
"javascript",
"javascriptreact",
"html"
],
"envs": [
"jest"
]
}
}