-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "universal-network-drive",
"version": "0.0.1",
"description": "Manage network drives on Windows, Mac, and Linux from Node.js",
"license": "MIT",
"homepage": "https://github.com/larrybahr/universal-network-drive",
"author": {
"name": "Larry Bahr",
"url": "http://www.LB3Tech.net/"
},
"contributors": [],
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"release-it": "^12.4.3",
"ts-jest": "^26.5.1",
"typedoc": "^0.20.25",
"typedoc-plugin-markdown": "^3.5.0",
"typescript": "^4.1.5"
},
"optionalDependencies": {
"windows-network-drive": "3.0.1",
"mac-network-drive": "1.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/larrybahr/universal-network-drive.git"
},
"keywords": [
"microsoft",
"windows",
"mac",
"macos",
"linux",
"drive",
"network",
"mount",
"filesystem"
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"dev-setup": "npm install -f",
"build": "tsc",
"test": "jest --coverage",
"docs:generate": "typedoc --out docs --includeVersion --readme none --plugin typedoc-plugin-markdown ./src/index.ts",
"release-beta": "nodenv --exec='release-it --dry-run --config=.release-it.js'"
},
"engines": {
"node": ">=13.2.0"
}
}