-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 842 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
{
"name": "@stifani/smb2",
"description": "A SMB2 implementation in TypeScript",
"repository": "https://github.com/ardean/smb2",
"bugs": "https://github.com/ardean/smb2/issues",
"version": "0.3.0",
"author": "ardean",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"start": "nodemon",
"build": "rm -rf dist && tsc",
"lint": "tslint --project ."
},
"files": [
"dist"
],
"keywords": [
"smb2",
"smb",
"cifs",
"samba",
"server-message-block",
"windows",
"file-sharing"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"moment-timezone": "^0.5.31"
},
"devDependencies": {
"@types/node": "^13.7.4",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
"tslint": "^6.1.0",
"typescript": "^4.0.3"
}
}