This repository was 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
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.73 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.73 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
{
"name": "@blinkmobile/identity-cli",
"description": "CLI to provide easy management of authentication with BlinkMobile",
"version": "3.1.0-beta.3",
"author": "BlinkMobile <developers@blinkmobile.com.au> (https://github.com/blinkmobile)",
"bin": {
"blinkm-identity": "./bin/index.js"
},
"bugs": {
"url": "https://github.com/blinkmobile/identity-cli/issues"
},
"contributors": [
"Ron Waldon <jokeyrhyme@gmail.com> (https://github.com/jokeyrhyme)",
"Matt Carroll <matt.carroll139@gmail.com> (https://github.com/mymattcarroll)"
],
"dependencies": {
"@blinkmobile/bm-identity": "5.1.0-beta.1",
"meow": "5.0.0",
"update-notifier": "2.5.0"
},
"devDependencies": {
"ava": "^1.2.1",
"eslint": "^5.15.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"fixpack": "^3.0.6",
"jsdoc": "^3.6.3",
"mockery": "^2.1.0",
"npm-bin-ava-tester": "^1.1.0",
"proxyquire": "^2.1.0"
},
"directories": {
"test": "test"
},
"engines": {
"node": ">=8",
"npm": ">=6"
},
"homepage": "https://github.com/blinkmobile/identity-cli#readme",
"keywords": [
"BlinkMobile",
"Cli",
"Mobility"
],
"license": "BSD-3-Clause",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blinkmobile/identity-cli.git"
},
"scripts": {
"ava": "ava",
"eslint": "eslint --fix --cache .",
"fixpack": "fixpack",
"make-docs": "jsdoc index.js ./lib -r -d ./jsdocs",
"pretest": "npm run eslint && npm run fixpack",
"test": "npm run ava"
}
}