-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.31 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
{
"name": "plugin-alias",
"description": "Plugin to manage alias for oclif",
"version": "0.0.0-dev",
"author": "Kavya-24",
"bugs": "https://github.com/Kavya-24/plugin-alias/issues",
"dependencies": {
"@oclif/command": "^1.5.20",
"@oclif/config": "^1.15.1",
"@oclif/core": "1.9.0",
"inquirer": "8.2.4",
"jaro-winkler": "0.2.8",
"omelette": "0.4.17"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.5",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/fast-levenshtein": "0.0.2",
"@types/node": "17.0.41",
"babel-eslint": "10.1.0",
"chai": "^4.2.0",
"eslint": "8.18.0",
"eslint-config-oclif": "3.1.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.2.3",
"eslint-plugin-promise": "6.0.0",
"globby": "^11.0.0",
"inquirer-test": "2.0.1",
"jest": "28.1.1",
"mocha": "^7.1.2",
"mock-inquirer": "1.0.3",
"nyc": "^15.0.1",
"semantic-release": "^19.0.3",
"sinon": "14.0.0"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/Kavya-24/plugin-alias",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"name": "alias",
"commands": "./src/commands",
"bin": "twilio",
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>",
"devPlugins": [
"@oclif/plugin-help"
],
"topics": {
"alias": {
"description": "Plugin to manage alias for oclif"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/Kavya-24/plugin-alias"
},
"release": {
"branches": [
"main"
]
},
"nyc": {
"include": [],
"exclude": [
"./src/utilities/InquirerPrompts.js"
]
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint --ignore-path .gitignore . && npm audit",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "nyc --check-coverage --lines 90 --reporter=lcov --reporter=text mocha \"test/**/**.test.js\"",
"version": "oclif-dev readme && git add README.md",
"semantic-release": "semantic-release --branches main",
"lint": "eslint --fix --ext .js,.jsx ."
}
}