-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "unison-server",
"version": "0.2.7",
"description": "A Typescript based web server built on express with support for basic dependency injection.",
"main": "./dist/index.js",
"scripts": {
"demo": "node ./dist/demo/app.js",
"test": "mocha test ./dist/test"
},
"repository": {
"url": "https://github.com/jacobclevenger/unison.git",
"type": "git"
},
"author": "Jacob Clevenger <jacobrclevenger@gmail.com>",
"license": "MIT",
"typings": "./dist/index",
"keywords": [
"express",
"typescript",
"dependency-injection",
"node.js",
"javascript"
],
"dependencies": {
"@types/body-parser": "^0.0.34",
"@types/chalk": "^0.4.31",
"@types/cors": "^2.8.1",
"@types/express": "^4.0.35",
"@types/node": "^7.0.5",
"@types/socket.io": "^1.4.28",
"body-parser": "^1.16.1",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"cors": "^2.8.1",
"express": "^4.14.1",
"mocha": "^3.2.0",
"reflect-metadata": "^0.1.10",
"socket.io": "^1.7.3"
}
}