-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.14 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": "backendless-coderunner",
"version": "7.5.1",
"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": "[email protected]"
},
"bin": {
"coderunner": "bin/coderunner"
},
"files": [
"bin",
"examples",
"lib",
"jsdoc-conf.json"
],
"repository": {
"type": "git",
"url": "[email protected]:Backendless/JS-Code-Runner.git"
},
"bugs": {
"url": "https://support.backendless.com",
"email": "[email protected]"
},
"engines": {
"node": ">=7.6"
},
"keywords": [
"backendless"
],
"dependencies": {
"backendless": "^7.3.7",
"backendless-js-services-core": "^0.2.0",
"commander": "^8.3.0",
"glob": "^7.2.0",
"jsdoc": "^3.6.10",
"jszip": "^3.10.1",
"xml": "^1.0.1"
},
"license": "MIT",
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"mocha": "^9.2.1",
"should": "^13.2.3",
"supertest": "^6.2.2"
}
}