-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.62 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
61
62
63
64
65
66
67
68
{
"name": "dodo",
"description": "Dodo.js REST backend framework core library",
"version": "0.0.15",
"license": "MIT",
"author": {
"name": "Sami Koskimäki",
"email": "sami.koskimaki@vincit.com",
"url": "https://github.com/koskimas"
},
"contributors": [
"Mikael Lepistö <mikael.lepisto@vincit.com> (https://github.com/elhigu)"
],
"repository": {
"type": "git",
"url": "git://github.com/vincit/dodo.js.git"
},
"keywords": [
"framework",
"http",
"api",
"web",
"rest",
"microservice"
],
"files": [
"README.md",
"CONTRIBUTING.md",
"LICENSE",
"index.js",
"app.js",
"build.js",
"errors.js",
"http.js",
"logger.js",
"utils.js",
"lib/*"
],
"dependencies": {
"bluebird": "3.5.1",
"cli-color": "1.1.0",
"compression": "1.7.1",
"form-data": "2.3.1",
"glob": "7.1.1",
"lodash": "^4.17.4",
"minimist": "1.2.0",
"underscore.string": "^3.0.0",
"uuid": "^3.0.0"
},
"devDependencies": {
"body-parser": "1.18.2",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"express": "^4.12.0",
"istanbul": "^0.4.0",
"mocha": "3.5.3",
"shelljs": "^0.7.6",
"sinon": "^4.0.1"
},
"peerDependencies": {
"express": "^4.12.0"
},
"scripts": {
"test": "node_modules/.bin/istanbul --config=.istanbul.yml cover _mocha -- --slow 10 --timeout 5000 --reporter spec --recursive tests",
"test-no-coverage": "node_modules/.bin/mocha --slow 10 --timeout 5000 --reporter spec --recursive tests",
"coveralls": "cat ./test-coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}