-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "@recent-cli/jumplist-parser-lite",
"version": "0.0.1",
"description": "A safe & non-forensic, Windows Jumplist parser.",
"main": "dist/index.js",
"files": [
"dist/"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "npx webpack --config webpack.config.js",
"test-src": "jest",
"test": "npx webpack --config webpack.config.js && jest"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashbeats/jumplist-parser-lite.git"
},
"keywords": [
"jumplists",
"parser",
"node",
"windows",
"customdestinations-jump",
"customdestinations-ms",
"automaticdestinations-jump",
"automaticdestinations-ms",
"lnk-files"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashbeats/jumplist-parser-lite/issues"
},
"homepage": "https://github.com/ashbeats/jumplist-parser-lite#readme",
"devDependencies": {
"@types/jest": "^26.0.7",
"dumper.js": "^1.3.1",
"fetch": "^1.1.0",
"jest": "^26.1.0",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.0"
},
"dependencies": {
"@recent-cli/resolve-lnk": "^0.0.2",
"cfb": "^1.2.0"
}
}