-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "get-windows-shortcut-properties",
"main": "index.js",
"version": "1.3.0",
"description": "Easy API to get the properties of a Windows .lnk shortcut with Node",
"author": "The Jared Wilcurt",
"keywords": [
"Desktop Shortcuts",
"desktop icon",
"alias",
"lnk"
],
"ManifestComments": [
],
"scripts": {
"start": "node index.js",
"lint": "eslint --config=.eslintrc.js index.js manual-test.js",
"fix": "eslint --fix --config=.eslintrc.js index.js manual-test.js",
"test": "node manual-test.js"
},
"dependencies": {
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"eslint": "^8.54.0",
"eslint-config-tjw-base": "^2.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nwutils/get-windows-shortcut-properties.git"
},
"bugs": {
"url": "https://github.com/nwutils/get-windows-shortcut-properties/issues"
},
"homepage": "https://github.com/nwutils/get-windows-shortcut-properties#readme"
}