-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.24 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
{
"name": "@cityssm/windows-unc-path-connect",
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"description": "Ensures a UNC path that requires a user name and password is ready to use in Windows before use.",
"exports": "./index.js",
"scripts": {
"test": "cross-env NODE_ENV=dev DEBUG=windows-unc-path-connect node --test test/index.test.js",
"coverage": "cross-env NODE_ENV=dev DEBUG=windows-unc-path-connect c8 --reporter=lcov --reporter=text --reporter=text-summary node --test test/index.test.js"
},
"keywords": [
"windows",
"unc-path",
"file-share",
"node-fs"
],
"homepage": "https://github.com/cityssm/node-windows-unc-path-connect#readme",
"bugs": {
"url": "https://github.com/cityssm/node-windows-unc-path-connect/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/node-windows-unc-path-connect.git"
},
"author": "The Corporation of the City of Sault Ste. Marie",
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^22.7.0",
"eslint-config-cityssm": "^9.0.1",
"prettier-config-cityssm": "^1.0.0"
},
"dependencies": {
"debug": "^4.3.7",
"exit-hook": "^4.0.0"
}
}