-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.56 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.56 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
69
70
{
"name": "backendless-coderunner",
"version": "8.0.2",
"description": "Backendless CodeRunner for Node.js",
"scripts": {
"test": "mocha",
"test-acceptance": "mocha test/acceptance",
"lint": "eslint lib test examples --fix"
},
"author": {
"name": "Backendless Corp",
"email": "info@backendless.com"
},
"bin": {
"coderunner": "bin/coderunner"
},
"files": [
"bin",
"examples",
"lib",
"jsdoc-conf.json"
],
"repository": {
"type": "git",
"url": "git@github.com:Backendless/JS-Code-Runner.git"
},
"bugs": {
"url": "https://support.backendless.com",
"email": "info@backendless.com"
},
"engines": {
"node": ">=18"
},
"keywords": [
"backendless"
],
"dependencies": {
"backendless": "^8.0.0",
"backendless-js-services-core": "^1.0.0",
"commander": "^8.3.0",
"glob": "^7.2.0",
"jsdoc": "^4.0.5",
"ioredis": "^5.3.1",
"jszip": "^3.10.1",
"xml": "^1.0.1",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.6.1",
"winston-logstash": "^0.4.0",
"winston-papertrail": "^1.0.5"
},
"license": "MIT",
"overrides": {
"lodash": ">=4.17.23",
"nodemailer": ">=7.0.11",
"underscore": ">=1.13.8",
"diff": ">=8.0.3",
"serialize-javascript": ">=7.0.3",
"js-yaml": ">=4.1.1",
"minimatch": ">=4.2.5"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.9.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^9.39.3",
"mocha": "^11.7.5",
"should": "^13.2.3",
"supertest": "^6.2.2"
}
}