-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "office-webdav",
"version": "0.2.0",
"description": "Add WebDav abilities to your existing Express project to allow MS Office apps (Word, Excel, PowerPoint) open and edit documents directly on web site via url",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start:example": "npm run build && node ./dist/example/server.js",
"prepare": "npm run build"
},
"files": [
"dist/modules/*",
"dist/index.*"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/trietho/office-webdav.git"
},
"author": "trietho",
"license": "MIT",
"keywords": ["webdav", "office"],
"bugs": {
"url": "https://github.com/trietho/office-webdav/issues"
},
"homepage": "https://github.com/trietho/office-webdav#readme",
"devDependencies": {
"@types/express": "^4.17.7",
"@types/node": "^14.0.27",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"@types/uuid": "^8.0.1"
},
"dependencies": {
"express": "^4.17.1",
"uuid": "^8.3.0"
}
}