-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1015 Bytes
/
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
{
"name": "@recent-cli/resolve-lnk",
"description": "Resolves basic information from windows lnk files using pure js",
"keywords": [
"lnk",
"binary parser",
"windows",
"parser",
"shelllink",
"shortcut"
],
"version": "0.0.2",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"test": "yarn build && jest",
"build": "npx webpack --config webpack.config.js"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"dumper.js": "^1.3.1",
"jest": "^29.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0",
"webpack-node-externals": "^3.0.0"
},
"author": "Ash <[email protected]>",
"license": "MIT",
"dependencies": {},
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashbeats/resolve-lnk.git"
},
"bugs": {
"url": "https://github.com/ashbeats/resolve-lnk/issues"
},
"homepage": "https://github.com/ashbeats/resolve-lnk#readme"
}