-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
51
52
53
54
55
{
"name": "baiji",
"version": "1.0.0-alpha.1",
"description": "Baiji is an easy to use and opinionated micro-framework for writing scalable and REST-like web APIs. Its main goals are parameter validation, entities, hooks, scalability and allowing rapid development and deployment of such APIs.",
"main": "index.js",
"scripts": {
"test": "mocha --reporter nyan",
"bugfix": "mocha --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baijijs/baiji.git"
},
"keywords": [
"rest",
"api",
"express",
"validations",
"sanitizers",
"presenter",
"entity",
"documentation"
],
"author": "Felix Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/baijijs/baiji/issues"
},
"homepage": "https://github.com/baijijs/baiji#readme",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0"
},
"engines": {
"node": ">=4"
},
"dependencies": {
"baiji-normalizer": "^1.0.9",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"cors": "^2.8.5",
"debug": "^4.3.1",
"delegates": "^1.0.0",
"express": "^4.17.1",
"http-errors": "^1.8.0",
"js2xmlparser": "^3.0.0",
"lodash": "^4.17.21",
"methods": "^1.1.2",
"micromatch": "^3.1.10",
"multer": "^1.4.2",
"on-finished": "^2.3.0",
"socket.io": "^2.4.1",
"socket.io-client": "^2.4.0"
}
}