UNPKG

2.9 kBJSONView Raw
1{
2 "name": "@blinkmobile/server-cli",
3 "description": "CLI to develop, test and deploy server-side HTTPS endpoints with BlinkMobile",
4 "version": "2.2.0",
5 "bin": {
6 "blinkm-server": "bin/index.js"
7 },
8 "bugs": {
9 "url": "https://github.com/blinkmobile/server-cli/issues"
10 },
11 "dependencies": {
12 "@blinkmobile/blinkmrc": "1.1.0",
13 "@blinkmobile/bm-identity": "2.3.5",
14 "@jokeyrhyme/pify-fs": "1.0.1",
15 "archiver": "2.0.3",
16 "aws-sdk": "2.108.0",
17 "boom": "5.2.0",
18 "chalk": "2.1.0",
19 "cli-table2": "0.2.0",
20 "cpr": "2.2.0",
21 "elegant-spinner": "1.0.1",
22 "execa": "0.8.0",
23 "glob": "7.1.2",
24 "good": "7.3.0",
25 "good-console": "6.4.0",
26 "hapi": "16.5.2",
27 "inquirer": "3.2.3",
28 "js-yaml": "3.9.1",
29 "load-json-file": "3.0.0",
30 "log-symbols": "2.0.0",
31 "log-update": "2.1.0",
32 "meow": "3.7.0",
33 "object-merge": "2.5.1",
34 "pify": "3.0.0",
35 "request": "2.81.0",
36 "semver": "5.4.1",
37 "serverless": "1.21.0",
38 "temp": "0.8.3",
39 "uniloc": "0.3.0",
40 "update-notifier": "2.2.0",
41 "valid-url": "1.0.9",
42 "write-json-file": "2.2.0"
43 },
44 "devDependencies": {
45 "ava": "^0.22.0",
46 "browserify": "^14.0.0",
47 "eslint": "^4.0.0",
48 "eslint-config-standard": "^10.0.0",
49 "eslint-plugin-import": "^2.2.0",
50 "eslint-plugin-node": "^5.0.0",
51 "eslint-plugin-promise": "^3.3.2",
52 "eslint-plugin-standard": "^3.0.0",
53 "fixpack": "^2.3.1",
54 "flow-bin": "^0.54.0",
55 "npm-bin-ava-tester": "^1.1.0",
56 "nyc": "^11.1.0",
57 "proxyquire": "^1.7.10",
58 "remark-cli": "^4.0.0",
59 "remark-lint": "^6.0.0",
60 "remark-preset-lint-recommended": "^3.0.0",
61 "yauzl": "^2.7.0"
62 },
63 "directories": {
64 "doc": "docs",
65 "example": "examples",
66 "test": "test"
67 },
68 "engines": {
69 "node": ">=6",
70 "npm": ">=3"
71 },
72 "files": [
73 "bin",
74 "dist",
75 "commands",
76 "lib",
77 "scripts",
78 "types.js"
79 ],
80 "homepage": "https://github.com/blinkmobile/server-cli#readme",
81 "keywords": [],
82 "license": "MIT",
83 "main": "index.js",
84 "nyc": {
85 "exclude": [
86 "dist",
87 "examples",
88 "test"
89 ]
90 },
91 "publishConfig": {
92 "access": "public"
93 },
94 "repository": {
95 "type": "git",
96 "url": "git+https://github.com/blinkmobile/server-cli.git"
97 },
98 "scripts": {
99 "ava": "nyc ava",
100 "browserify": "browserify --node --no-insert-globals --no-detect-globals --standalone wrapper ./scripts/wrapper.js > ./dist/wrapper.js",
101 "build": "npm run browserify",
102 "eslint": "eslint --fix --cache .",
103 "fixpack": "fixpack",
104 "flow_check": "flow check",
105 "lint-md": "remark . --use remark-preset-lint-recommended",
106 "nyc": "nyc check-coverage",
107 "posttest": "npm run eslint && npm run flow_check && npm run fixpack && npm run lint-md",
108 "prepublish": "npm run build",
109 "pretest": "npm run build",
110 "test": "npm run ava"
111 }
112}