-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 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
{
"name": "microdose",
"version": "0.8.1",
"description": "A light-weight TypeScript web framework for Node with minimum external dependencies.",
"author": "Boris Lemke <dimaslemek@gmail.com>",
"homepage": "https://borislemke.gitbooks.io/microdose/content/",
"keywords": [
"framewrok",
"node",
"typescript",
"http",
"express",
"decorators"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "nodemon example/index.ts",
"benchmark": "ts-node benchmark/microdose.ts",
"rimraf": "rimraf",
"clean": "npm run rimraf -- dist",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.json",
"build:example": "tsc -p tsconfig.example.json",
"build:benchmark": "tsc -p tsconfig.benchmark.json",
"prepublish": "npm run lint && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint -p . -c ./tslint.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/borislemke/microdose.git"
},
"bugs": {
"url": "https://github.com/borislemke/microdose/issues"
},
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/multer": "^1.3.7",
"@types/node": "^10.7.1",
"@types/parseurl": "^1.3.1",
"@types/uws": "^0.13.2",
"body-parser": "^1.18.3",
"concurrently": "^3.6.1",
"express": "^4.16.3",
"koa": "^2.5.2",
"multer": "^1.3.1",
"nodemon": "^1.18.3",
"restify": "^7.2.1",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^7.1.0",
"typescript": "^3.0.1"
},
"dependencies": {
"parseurl": "^1.3.2"
}
}