This repository has been archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.13 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
{
"name": "bi-service",
"version": "1.6.2",
"description": "Node.js web application framework",
"main": "index.js",
"testFramework": "mocha",
"author": "Bohemia Interactive",
"contributors": [
"fogine"
],
"private": false,
"bin": {
"bi-service": "./bin/bi-service.js"
},
"engines": {
"node": ">=6.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/BohemiaInteractive/bi-service"
},
"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'",
"test": "npm run tests"
},
"dependencies": {
"bi-cache-store-interface": "^1.0.1",
"bi-config": "^2.0.0",
"bi-logger": "^2.0.0",
"ajv": "~6.5.1",
"ajv-keywords": "3.0.0",
"bluebird": "^3.5.1",
"body-parser": "~1.18.2",
"debug": "~3.1.0",
"events-bluebird": "^1.0.0",
"express": "~4.16.3",
"http-status-codes": "^1.0.6",
"json5": "0.5.0",
"lodash": "~4.17.4",
"qs": "~6.5.1",
"stack-trace": "0.0.10",
"type-is": "1.6.16",
"media-typer": "0.3.0",
"yargs": "^8.0.0"
},
"devDependencies": {
"realm-jsdoc": "0.x",
"jsdoc": "^3.4.0",
"bi-service-sdk": "^1.2.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"express-session": "^1.13.x",
"find-port": "^2.0.1",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"nconf": "^0.8.4",
"rewire": "^2.5.2",
"sinon": "^1.17.3",
"sinon-as-promised": "^4.0.0",
"sinon-chai": "^2.8.0",
"tmp": "0.0.29",
"supertest": "1.1.0"
}
}