This repository was archived by the owner on Jul 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.93 KB
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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "wopi-node",
"version": "1.0.0",
"description": "Sample WOPI host implementation in Node",
"main": "dist/server.js",
"dependencies": {
"body-parser": "^1.17.2",
"compression": "^1.6.2",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-session": "^1.15.3",
"express-validator": "^3.2.0",
"memory-cache": "^0.1.6",
"morgan": "^1.8.2",
"node-cache": "^4.1.1",
"request": "^2.81.0",
"typescript": "^2.3.4",
"xml2js": "^0.4.17"
},
"devDependencies": {
"@types/body-parser": "^1.16.3",
"@types/dotenv": "^4.0.0",
"@types/express": "^4.0.35",
"@types/express-session": "^1.15.0",
"@types/jquery": "^3.2.0",
"@types/linq": "^2.2.33",
"@types/memory-cache": "0.0.29",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.31",
"@types/node-cache": "^3.0.31",
"@types/request": "0.0.43",
"@types/xml": "^1.0.1",
"@types/xml2js": "0.0.33",
"nodemon": "^1.11.0",
"tslint": "^5.4.3"
},
"scripts": {
"start": "npm run build && npm run watch",
"build": "npm run build-sass && npm run build-ts && npm run tslint",
"serve": "node dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"nodemon dist/server.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"build-sass": "echo \"Info: No sass involved\"",
"watch-sass": "echo \"Info: No sass involved\"",
"tslint": "echo \"Info: No tslint involved\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/coatsy/wopi-node.git"
},
"keywords": [
"WOPI",
"Office Online"
],
"author": "Andrew Coates (@coatsy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/coatsy/wopi-node/issues"
},
"homepage": "https://github.com/coatsy/wopi-node#readme"
}