-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.17 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.17 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
{
"name": "volcano-express",
"version": "1.0.37",
"keywords": [
"express",
"framework",
"api",
"http",
"websocket",
"ws",
"node",
"js",
"nodejs"
],
"homepage": "https://github.com/CBinet/volcano",
"description": "A framework built on top of the express.js library",
"main": "main.js",
"types": "main.d.ts",
"scripts": {
"test": "jasmine-ts \"spec/**/*.spec.ts\"",
"build": "tsc --declaration",
"start": "(npm run build && node lib/examples/main.js)"
},
"author": "Charles Binet",
"license": "ISC",
"readme": "../README.md",
"devDependencies": {
"@types/express": "^4.16.0",
"@types/jasmine": "^2.8.8",
"@types/ws": "^5.1.2",
"chalk": "^2.4.1",
"fs": "0.0.1-security",
"jasmine": "^3.1.0",
"jasmine-ts": "^0.2.1",
"ts-node": "^6.2.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
},
"dependencies": {
"body-parser": "^1.18.3",
"chalk-console": "^1.0.1",
"cors": "^2.8.4",
"express": "^4.16.3",
"jasmine-node": "^1.15.0",
"reflect-metadata": "^0.1.12",
"ws": "^5.2.2",
"xml": "^1.0.1"
},
"files": [
"**/lib/*",
"**/README.md"
]
}