UNPKG

3.01 kBJSONView Raw
1{
2 "name": "kinvey-cli",
3 "version": "5.0.0",
4 "description": "Command-line utility for managing various aspects of your Kinvey account",
5 "keywords": [
6 "Kinvey"
7 ],
8 "homepage": "http://www.kinvey.com",
9 "bugs": "https://github.com/Kinvey/kinvey-cli/issues",
10 "license": "Apache-2.0",
11 "author": "Kinvey, Inc.",
12 "contributors": [
13 "Mark van Seventer <mark@kinvey.com>",
14 "Sam Levin <sam@kinvey.com>"
15 ],
16 "bin": {
17 "kinvey": "./bin/kinvey"
18 },
19 "repository": {
20 "type": "git",
21 "url": "Kinvey/kinvey-cli"
22 },
23 "scripts": {
24 "start": "./bin/kinvey",
25 "prepublish": "./node_modules/.bin/dos2unix ./bin/kinvey",
26 "pretest": "npm run lint",
27 "lint": "./node_modules/.bin/eslint config lib test",
28 "test": "npm run test-unit && npm run test-integration",
29 "test-unit": "./node_modules/.bin/mocha test/unit --NODE_CONFIG_DIR=./test/config",
30 "test-integration-mock": "./node_modules/.bin/mocha test/integration",
31 "test-integration-no-mock": "./node_modules/.bin/mocha test/integration-no-mock/**/*.test.js",
32 "test-integration": "npm run test-integration-mock && npm run test-integration-no-mock",
33 "coverage": "./node_modules/.bin/nyc --reporter=html --reporter=text ./node_modules/.bin/mocha test --NODE_CONFIG_DIR=./test/config",
34 "eslint": "./node_modules/.bin/eslint bin config lib test",
35 "test-npm-security": "npm audit"
36 },
37 "dependencies": {
38 "aes-js": "3.1.1",
39 "archiver": "1.0.1",
40 "async": "2.6.1",
41 "chalk": "2.1.0",
42 "config": "1.16.0",
43 "console.table": "0.10.0",
44 "inquirer": "0.12.0",
45 "isemail": "1.2.0",
46 "joi": "13.6.0",
47 "lodash.clonedeep": "4.5.0",
48 "lodash.findkey": "4.6.0",
49 "lodash.get": "4.4.2",
50 "lodash.isempty": "4.4.0",
51 "lodash.isplainobject": "4.0.6",
52 "lodash.isequal": "4.5.0",
53 "lodash.isstring": "4.0.1",
54 "lodash.pick": "4.4.0",
55 "lodash.pickby": "4.6.0",
56 "lodash.merge": "4.6.2",
57 "lodash.omitby": "4.6.0",
58 "lodash.sortby": "4.7.0",
59 "moment": "2.22.1",
60 "request": "2.87.0",
61 "semver": "5.5.0",
62 "update-notifier": "0.5.0",
63 "uuid": "2.0.3",
64 "uuid-v4": "0.1.0",
65 "valid-url": "1.0.9",
66 "winston": "2.4.3",
67 "yargs": "10.0.3"
68 },
69 "devDependencies": {
70 "body-parser": "1.18.2",
71 "chai": "3.3.0",
72 "dos2unix-cli": "1.0.1",
73 "eslint": "5.0.1",
74 "eslint-config-kinvey-platform": "kinvey/eslint-kinvey-platform#0.1.4",
75 "eslint-plugin-import": "2.13.0",
76 "express": "4.16.2",
77 "mocha": "5.0.4",
78 "nyc": "13.1.0",
79 "sinon": "4.1.3",
80 "sinon-chai": "2.14.0",
81 "snap-shot-it": "6.1.9",
82 "strip-ansi": "4.0.0",
83 "suppose": "0.6.2",
84 "test-console": "1.0.0"
85 },
86 "engines": {
87 "node": ">=6.9.1"
88 },
89 "os": [
90 "darwin",
91 "linux",
92 "win32"
93 ],
94 "preferGlobal": true,
95 "yargs": {
96 "boolean-negation": false,
97 "camel-case-expansion": false
98 }
99}