package.json
2.65 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"_args": [
[
"sumchecker@3.0.1",
"C:\\Users\\rkdud\\Desktop\\Capstone_design1_JJS1\\JJS_project1\\mobile forensic tool\\forensic_tool"
]
],
"_development": true,
"_from": "sumchecker@3.0.1",
"_id": "sumchecker@3.0.1",
"_inBundle": false,
"_integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==",
"_location": "/sumchecker",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "sumchecker@3.0.1",
"name": "sumchecker",
"escapedName": "sumchecker",
"rawSpec": "3.0.1",
"saveSpec": null,
"fetchSpec": "3.0.1"
},
"_requiredBy": [
"/@electron/get"
],
"_resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz",
"_spec": "3.0.1",
"_where": "C:\\Users\\rkdud\\Desktop\\Capstone_design1_JJS1\\JJS_project1\\mobile forensic tool\\forensic_tool",
"author": {
"name": "Mark Lee"
},
"ava": {
"babel": false,
"compileEnhancements": false
},
"bugs": {
"url": "https://github.com/malept/sumchecker/issues"
},
"dependencies": {
"debug": "^4.1.0"
},
"description": "Checksum validator",
"devDependencies": {
"ava": "^2.2.0",
"codecov": "^3.3.0",
"eslint": "^6.1.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-ava": "^9.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"nyc": "^14.0.0",
"tsd": "^0.11.0"
},
"engines": {
"node": ">= 8.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:ava/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:node/recommended",
"plugin:promise/recommended",
"standard"
],
"plugins": [
"ava"
],
"rules": {
"node/no-unpublished-require": [
"error",
{
"allowModules": [
"ava"
]
}
],
"strict": [
"error"
]
}
},
"homepage": "https://github.com/malept/sumchecker#readme",
"keywords": [
"checksum",
"hash"
],
"license": "Apache-2.0",
"main": "index.js",
"name": "sumchecker",
"repository": {
"type": "git",
"url": "git+https://github.com/malept/sumchecker.git"
},
"scripts": {
"ava": "ava test/index.js",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"coverage": "nyc ava test/index.js",
"lint": "eslint .",
"test": "npm run lint && npm run ava && npm run tsd",
"tsd": "tsd"
},
"types": "index.d.ts",
"version": "3.0.1"
}