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 6
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.74 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.74 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "kinvey-cli",
"version": "6.2.4",
"description": "Command-line utility for managing various aspects of your Kinvey account",
"keywords": [
"Kinvey"
],
"homepage": "http://www.kinvey.com",
"bugs": "https://github.com/Kinvey/kinvey-cli/issues",
"license": "Apache-2.0",
"author": "Kinvey, Inc.",
"contributors": [
"Mark van Seventer <mark@kinvey.com>",
"Sam Levin <sam@kinvey.com>"
],
"bin": {
"kinvey": "./bin/kinvey"
},
"repository": {
"type": "git",
"url": "Kinvey/kinvey-cli"
},
"scripts": {
"start": "./bin/kinvey",
"prepublish": ".\\node_modules\\.bin\\dos2unix .\\bin\\kinvey",
"pretest": "npm run lint",
"lint": "./node_modules/.bin/eslint config lib test",
"test": "npm run test-unit && npm run test-integration",
"test-unit": "./node_modules/.bin/mocha test/unit --NODE_CONFIG_DIR=./test/config",
"test-integration-mock": "./node_modules/.bin/mocha test/integration",
"test-integration-no-mock": "./node_modules/.bin/mocha test/integration-no-mock/**/*.test.js",
"test-integration": "npm run test-integration-mock && npm run test-integration-no-mock",
"eslint": "./node_modules/.bin/eslint bin config lib test",
"test-npm-security": "npm audit --production --audit-level=high"
},
"dependencies": {
"aes-js": "3.1.1",
"archiver": "1.0.1",
"async": "2.6.4",
"chalk": "2.1.0",
"config": "1.16.0",
"console.table": "0.10.0",
"inquirer": "0.12.0",
"isemail": "1.2.0",
"joi": "13.6.0",
"lodash.clonedeep": "4.5.0",
"lodash.findkey": "4.6.0",
"lodash.get": "4.4.2",
"lodash.isempty": "4.4.0",
"lodash.isequal": "4.5.0",
"lodash.isplainobject": "4.0.6",
"lodash.isstring": "4.0.1",
"lodash.merge": "4.6.2",
"lodash.omitby": "4.6.0",
"lodash.pick": "4.4.0",
"lodash.pickby": "4.6.0",
"lodash.sortby": "4.7.0",
"moment": "2.29.4",
"open": "7.0.4",
"request": "2.87.0",
"semver": "5.5.0",
"update-notifier": "0.5.0",
"uuid": "2.0.3",
"uuid-v4": "0.1.0",
"valid-url": "1.0.9",
"winston": "2.4.6",
"yargs": "10.0.3"
},
"devDependencies": {
"body-parser": "1.18.2",
"chai": "3.3.0",
"dos2unix-cli": "1.0.1",
"eslint": "5.0.1",
"eslint-config-kinvey-platform": "kinvey/eslint-kinvey-platform#0.1.4",
"eslint-plugin-import": "2.13.0",
"express": "4.19.2",
"mocha": "5.0.4",
"sinon": "4.1.3",
"sinon-chai": "2.14.0",
"snap-shot-it": "6.1.9",
"strip-ansi": "4.0.0",
"suppose": "0.6.2",
"test-console": "1.0.0"
},
"engines": {
"node": ">=12.16.1"
},
"os": [
"darwin",
"linux",
"win32"
],
"preferGlobal": true,
"yargs": {
"boolean-negation": false,
"camel-case-expansion": false
}
}