-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.8 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
{
"name": "create-flyyer-app",
"description": "Create Flyyer.io app",
"version": "2.1.2",
"author": "Patricio López Juri @lopezjurip",
"bin": {
"create-flyyer-app": "./bin/run"
},
"files": [
"/bin",
"/lib",
"/templates",
"/yarn.lock",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/useflyyer/create-flyyer-app",
"keywords": [
"oclif",
"flyyer"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "create-flyyer-app"
},
"repository": "useflyyer/create-flyyer-app",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc.js",
"prepack": "rm -rf lib && tsc -b && oclif-dev readme",
"test": "echo NO TESTS",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"engines": {
"node": ">=8.5.0"
},
"bugs": "https://github.com/useflyyer/create-flyyer-app/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.3",
"chalk": "^4.1.2",
"debug": "^4.3.2",
"dedent": "^0.7.0",
"enquirer": "^2.3.6",
"title-case": "^3.0.3",
"tslib": "^2.3.1"
},
"devDependencies": {
"@flyyer/eslint-config": "^2.0.1",
"@oclif/dev-cli": "^1.26.0",
"@types/debug": "^4.1.7",
"@types/dedent": "^0.7.0",
"@types/node": "^16.9.1",
"eslint": "^7.32.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.2.0",
"husky": "^4.3.7",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}