UNPKG

2.79 kBJSONView Raw
1{
2 "name": "@blinkmobile/server-cli",
3 "description": "CLI to develop, test and deploy server-side HTTPS endpoints with BlinkMobile",
4 "version": "4.0.0",
5 "ava": {
6 "files": [
7 "test/**/*",
8 "!test/fixtures/**/*",
9 "!test/helpers/**/*"
10 ]
11 },
12 "bin": {
13 "blinkm-server": "bin/index.js"
14 },
15 "bugs": {
16 "url": "https://github.com/blinkmobile/server-cli/issues"
17 },
18 "dependencies": {
19 "@blinkmobile/blinkmrc": "2.0.0",
20 "@blinkmobile/bm-identity": "5.0.0",
21 "@jokeyrhyme/pify-fs": "1.0.1",
22 "archiver": "3.1.1",
23 "aws-sdk": "2.600.0",
24 "boom": "7.3.0",
25 "chalk": "3.0.0",
26 "cli-table2": "0.2.0",
27 "execa": "4.0.0",
28 "glob": "7.1.6",
29 "good": "7.3.0",
30 "good-console": "7.1.0",
31 "hapi": "^16.6.3",
32 "inquirer": "7.0.3",
33 "js-yaml": "3.13.1",
34 "jsonwebtoken": "8.5.1",
35 "load-json-file": "6.2.0",
36 "meow": "6.0.0",
37 "object-merge": "2.5.1",
38 "ora": "4.0.3",
39 "pify": "4.0.1",
40 "recursive-copy": "2.0.10",
41 "request": "2.88.0",
42 "semver": "7.1.1",
43 "serverless": "1.60.5",
44 "temp": "0.9.1",
45 "uniloc": "0.3.0",
46 "update-notifier": "4.0.0",
47 "valid-url": "1.0.9",
48 "write-json-file": "4.2.1"
49 },
50 "devDependencies": {
51 "ava": "^2.4.0",
52 "browserify": "^16.5.0",
53 "eslint": "^6.8.0",
54 "eslint-config-standard": "^14.1.0",
55 "eslint-plugin-import": "^2.19.1",
56 "eslint-plugin-node": "^11.0.0",
57 "eslint-plugin-promise": "^4.2.1",
58 "eslint-plugin-standard": "^4.0.1",
59 "fixpack": "^2.3.1",
60 "flow-bin": "^0.115.0",
61 "npm-bin-ava-tester": "^1.1.0",
62 "nyc": "^15.0.0",
63 "proxyquire": "^2.1.0",
64 "yauzl": "^2.10.0"
65 },
66 "directories": {
67 "doc": "docs",
68 "example": "examples",
69 "test": "test"
70 },
71 "engines": {
72 "node": "^12",
73 "npm": ">=6"
74 },
75 "files": [
76 "bin",
77 "dist",
78 "commands",
79 "lib",
80 "scripts",
81 "types.js"
82 ],
83 "homepage": "https://github.com/blinkmobile/server-cli#readme",
84 "keywords": [],
85 "license": "MIT",
86 "main": "index.js",
87 "nyc": {
88 "exclude": [
89 "dist",
90 "examples",
91 "test"
92 ]
93 },
94 "publishConfig": {
95 "access": "public"
96 },
97 "repository": {
98 "type": "git",
99 "url": "git+https://github.com/blinkmobile/server-cli.git"
100 },
101 "scripts": {
102 "ava": "nyc ava",
103 "browserify": "browserify --node --no-insert-globals --no-detect-globals --standalone wrapper ./scripts/wrapper.js > ./dist/wrapper.js",
104 "build": "npm run browserify",
105 "eslint": "eslint --fix --cache .",
106 "fixpack": "fixpack",
107 "flow_check": "flow check",
108 "nyc": "nyc check-coverage",
109 "prepublish": "npm run build",
110 "pretest": "npm run build && npm run eslint && npm run flow_check && npm run fixpack",
111 "test": "npm run ava"
112 }
113}