-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
41
42
43
44
45
46
47
48
49
50
{
"name": "munson",
"version": "0.0.4",
"description": "Don't be up a creek without a paddle. Have the world in the palm of your hand with this mvc framework for nodejs",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"homepage": "https://github.com/davesters/munson",
"repository": {
"type": "git",
"url": "https://github.com/davesters/munson"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "grunt build",
"release": "standard-version"
},
"keywords": [
"typescript",
"mvc",
"framework",
"api"
],
"author": "David Corona",
"license": "MIT",
"dependencies": {
"@types/express": "^4.11.1",
"body-parser": "^1.16.1",
"cookie-parser": "^1.4.3",
"express": "^4.14.1",
"glob": "^7.1.1",
"hash-it": "^3.1.2",
"inversify": "^4.13.0",
"merge": "^1.2.0",
"reflect-metadata": "^0.1.9"
},
"devDependencies": {
"@types/body-parser": "1.17.0",
"@types/cookie-parser": "^1.3.30",
"@types/glob": "^5.0.30",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-ts": "^6.0.0-beta.11",
"grunt-tslint": "^5.0.2",
"standard-version": "^4.4.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^2.2.1"
}
}