-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.49 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
86
87
88
89
90
91
{
"name": "@geek/mobile",
"description": "Geek Mobile Toolkit - Everything you need for creating and building cross-platform native mobile apps",
"version": "1.0.6",
"author": {
"name": "Brenton House",
"email": "[email protected]",
"url": "https://brenton.house"
},
"bin": {
"mobile": "./bin/run"
},
"bugs": "https://github.com/brentonhouse/geek-mobile/issues",
"dependencies": {
"@geek/spinner": "^1.0.0",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/parser": "^3.8.5",
"@oclif/plugin-help": "^3.2.0",
"@oclif/plugin-not-found": "^1.2.4",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"@oclif/plugin-which": "^1.0.3",
"bluebird": "^3.7.2",
"colors": "^1.4.0",
"enquirer": "^2.3.6",
"findit": "^2.0.0",
"fs-extra": "^9.0.1",
"globby": "^11.0.1",
"inquirer": "^7.3.3",
"multimatch": "^5.0.0",
"path-exists": "^4.0.0",
"temp": "^0.9.2",
"update-notifier": "^5.0.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"@geek/eslint-config": "0.0.17",
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.7",
"chai": "^4.2.0",
"eslint": "^7.12.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.3",
"eslint-plugin-promise": "^4.2.1",
"mocha": "^8.2.0",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/brentonhouse/geek-mobile",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "mobile",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-which"
],
"hooks": {
"init": [
"./src/hooks/init/init-hook",
"./src/hooks/init/set-global-config"
],
"command_not_found": "./src/hooks/command_not_found/not-found-hook.js"
}
},
"repository": "brentonhouse/geek-mobile",
"scripts": {
"prep": "npm install --ignore-scripts && npm run list",
"list": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"prepack": "oclif-dev manifest && oclif-dev readme",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md",
"lint": "eslint . --fix"
}
}