This repository has been archived by the owner on Mar 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.97 KB
/
package.json
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
{
"name": "@blinkmobile/client-cli",
"description": "CLI to deploy client-side web applications with BlinkMobile",
"version": "1.4.0-beta.0",
"author": "Blink Mobile",
"bin": {
"blinkm-client": "./bin/index.js"
},
"bugs": {
"url": "https://github.com/blinkmobile/client-cli/issues"
},
"contributors": [
{
"name": "Simon Dobie",
"email": "[email protected]"
}
],
"dependencies": {
"@blinkmobile/aws-s3": "2.2.0",
"@blinkmobile/blinkmrc": "2.0.0",
"@blinkmobile/bm-identity": "5.0.0",
"aws-sdk": "2.224.1",
"chalk": "2.3.2",
"inquirer": "5.2.0",
"meow": "4.0.0",
"object-merge": "2.5.1",
"ora": "2.0.0",
"request": "2.85.0",
"update-notifier": "2.5.0"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint": "^4.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^3.0.1",
"fixpack": "^2.3.1",
"flow-bin": "^0.69.0",
"mockery": "^2.0.0",
"npm-bin-ava-tester": "^1.1.0",
"nyc": "^11.0.0",
"pify": "^3.0.0",
"temp": "^0.8.3"
},
"directories": {
"doc": "docs",
"test": "test"
},
"engines": {
"node": ">=6",
"npm": ">=3"
},
"files": [
"bin",
"commands",
"lib"
],
"homepage": "https://github.com/blinkmobile/client-cli#readme",
"keywords": [
"BlinkMobile",
"Cli",
"Mobility"
],
"license": "BSD-3-Clause",
"main": "bin/index.js",
"preferGlobal": true,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/blinkmobile/client-cli.git"
},
"scripts": {
"ava": "nyc ava",
"eslint": "eslint --fix --cache .",
"fixpack": "fixpack",
"flow_check": "flow check",
"nyc": "nyc check-coverage",
"pretest": "npm run fixpack && npm run eslint && npm run flow_check",
"test": "npm run ava"
}
}