This repository was archived by the owner on Feb 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.36 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.36 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
{
"name": "kinvey-code-task-runner",
"version": "2.5.2",
"description": "Task Runner for Kinvey Microservices",
"engines": {
"node": "= 0.10.x"
},
"repository": {
"type": "git",
"url": "Kinvey/kinvey-code-task-runner"
},
"license": "Apache-2.0",
"author": "Kinvey <support@kinvey.com>",
"contributors": [
"Michael Salinger <mjsalinger@kinvey.com>"
],
"dependencies": {
"async": "2.6.4",
"body-parser": "1.20.2",
"express": "4.19.2"
},
"devDependencies": {
"@progresskinvey/eslint-config-kinvey-platform": "0.2.0",
"eslint": "5.16.0",
"eslint-plugin-import": "2.16.0",
"jscpd": "3.5.10",
"mocha": "10.2.0",
"proxyquire": "2.1.0",
"should": "9.0.2",
"sinon": "7.1.1",
"supertest": "6.3.3"
},
"scripts": {
"pretest": "npm run lint",
"lint": "./node_modules/.bin/eslint lib test *.js --color",
"test": "npm run test-unit && npm run test-integration",
"test-unit": "mocha test/unit/*/*",
"test-integration": "echo \"No integration tests available for the moment\"",
"test-code-clone": "jscpd lib -f javascript -r time,consoleFull,console -x 2000 -z 100kb -t 4.9",
"test-tcp-receiver": "mocha test/unit/lib/tcpReceiver.test.js",
"test-http-receiver": "mocha test/unit/lib/httpReceiver.test.js",
"test-npm-security": "npm audit --production --audit-level=high"
}
}