-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.24 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "serviser",
"version": "2.1.1",
"description": "Node.js web application framework",
"main": "index.js",
"testFramework": "mocha",
"author": "fogine",
"contributors": [
"fogine"
],
"private": false,
"bin": {
"serviser": "./bin/serviser.js"
},
"engines": {
"node": ">=6.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lucid-services/serviser"
},
"license": "GPL-3.0",
"files": [
"bin",
"lib",
"LICENCE",
"COPYRIGHT",
"CHANGELOG.md",
"index.js"
],
"scripts": {
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec -t 5000 'tests/src/**/*.js'",
"create:docs": "./node_modules/.bin/jsdoc --configure .jsdoc.json -u ./tutorials --verbose",
"tests": "mocha --ui bdd --colors --check-leaks -t 5000 --reporter spec 'tests/src/**/*.js'",
"tests:acceptance": "mocha --ui bdd --colors --check-leaks -t 5000 --reporter spec 'tests/src/acceptance/**/*.js'",
"test": "npm run tests"
},
"dependencies": {
"ajv": "^6.12.6",
"ajv-keywords": "^3.5.2",
"bluebird": "^3.7.2",
"body-parser": "~1.19.0",
"debug": "~3.2.6",
"events-bluebird": "^1.0.0",
"express": "~4.17.0",
"http-status-codes": "^1.4.0",
"json5": "0.5.0",
"lodash": "^4.17.20",
"media-typer": "^1.0.2",
"qs": "^6.9.4",
"serviser-cache-store-interface": "^1.0.1",
"serviser-config": "3.0.0",
"serviser-logger": "^2.0.0",
"stack-trace": "0.0.10",
"type-is": "1.6.16",
"yargs": "^8.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"express-session": "^1.17.1",
"find-port": "^2.0.1",
"istanbul": "^0.4.3",
"jsdoc": "^3.6.6",
"mocha": "^8.1.3",
"nconf": "^0.8.4",
"realm-jsdoc": "0.x",
"rewire": "^2.5.2",
"serviser-sdk": "^1.2.2",
"sinon": "^1.17.3",
"sinon-as-promised": "^4.0.0",
"sinon-chai": "^2.8.0",
"supertest": "1.1.0",
"tmp": "0.0.29"
}
}