FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
extension-cli/package.json at main · MobileFirstLLC/extension-cli · GitHub
MobileFirstLLC
/
extension-cli
Public
Notifications
You must be signed in to change notification settings
Fork
27
Star
186
Code
Issues
16
Pull requests
18
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
extension-cli
/
package.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
111 lines (111 loc) · 3.28 KB
Breadcrumbs
extension-cli
/
package.json
Copy path
File metadata and controls
111 lines (111 loc) · 3.28 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name"
:
"
extension-cli
"
,
"version"
:
"
1.2.5-alpha.0
"
,
"description"
:
"
CLI tool for building browser extensions
"
,
"homepage"
:
"
https://oss.mobilefirst.me/extension-cli
"
,
"repository"
: {
"type"
:
"
git
"
,
"url"
:
"
https://github.com/mobilefirstllc/extension-cli.git
"
},
"bugs"
: {
"url"
:
"
https://github.com/mobilefirstllc/extension-cli.git
"
},
"author"
: {
"name"
:
"
Mobile First
"
,
"email"
:
"
hello@mobilefirst.me
"
,
"url"
:
"
https://mobilefirst.me
"
},
"funding"
: [
{
"type"
:
"
github
"
,
"url"
:
"
https://github.com/sponsors/MobileFirstLLC
"
}
],
"engines"
: {
"node"
:
"
>=12.0.0
"
},
"bin"
: {
"extension-cli"
:
"
cli/xt-create.js
"
,
"xt-build"
:
"
cli/xt-build.js
"
,
"xt-docs"
:
"
cli/xt-docs.js
"
,
"xt-test"
:
"
cli/xt-test.js
"
,
"xt-clean"
:
"
cli/xt-clean.js
"
,
"xt-sync"
:
"
cli/xt-sync.js
"
},
"keywords"
: [
"
chrome extensions
"
,
"
web extensions
"
,
"
browser extensions
"
,
"
command line
"
,
"
developer tools
"
,
"
utility
"
,
"
web
"
,
"
extensions
"
,
"
firefox
"
,
"
mozilla
"
,
"
add-ons
"
,
"
google
"
,
"
chrome
"
,
"
opera
"
,
"
edge
"
,
"
brave
"
],
"scripts"
: {
"test"
:
"
nyc mocha ./test/*.test.js --colors
"
,
"test:report"
:
"
npm run test -- nyc report
"
,
"test:travis"
:
"
npm run test && nyc report --reporter=text-lcov | coveralls
"
,
"alpha:test"
:
"
npx standard-version --dry-run --prerelease alpha
"
,
"patch:test"
:
"
npx standard-version --dry-run --release-as patch
"
,
"minor:test"
:
"
npx standard-version --dry-run --release-as minor
"
,
"minor:beta:test"
:
"
npx standard-version --dry-run --release-as minor --prerelease beta
"
,
"minor:alpha:test"
:
"
npx standard-version --dry-run --release-as minor --prerelease alpha
"
,
"major:alpha:test"
:
"
npx standard-version --dry-run --release-as major --prerelease alpha
"
,
"major:test"
:
"
npx standard-version --dry-run --release-as major
"
,
"alpha"
:
"
npx standard-version --prerelease alpha
"
,
"patch"
:
"
npx standard-version --release-as patch
"
,
"minor"
:
"
npx standard-version --release-as minor
"
,
"patch:alpha"
:
"
npx standard-version --release-as patch --prerelease alpha
"
,
"minor:alpha"
:
"
npx standard-version --release-as minor --prerelease alpha
"
,
"major:alpha"
:
"
npx standard-version --release-as major --prerelease alpha
"
,
"major"
:
"
npx standard-version --release-as major
"
},
"license"
:
"
MIT
"
,
"standard-version"
: {
"infile"
:
"
.github/changelog.md
"
},
"dependencies"
: {
"@babel/preset-env"
:
"
7.16.11
"
,
"@babel/register"
:
"
7.17.7
"
,
"chai"
:
"
4.3.6
"
,
"chalk"
:
"
4.1.2
"
,
"cli-spinner"
:
"
0.2.10
"
,
"commander"
:
"
9.0.0
"
,
"del"
:
"
6.0.0
"
,
"eslint"
:
"
8.11.0
"
,
"gulp"
:
"
4.0.2
"
,
"gulp-change"
:
"
1.0.2
"
,
"gulp-clean-css"
:
"
4.3.0
"
,
"gulp-concat"
:
"
2.6.1
"
,
"gulp-htmlmin"
:
"
5.0.1
"
,
"gulp-jsonminify"
:
"
1.1.0
"
,
"gulp-load-plugins"
:
"
2.0.7
"
,
"gulp-merge-json"
:
"
2.1.1
"
,
"gulp-rename"
:
"
2.0.0
"
,
"gulp-sass"
:
"
5.1.0
"
,
"gulp-zip"
:
"
5.1.0
"
,
"jsdoc"
:
"
3.6.10
"
,
"jsdom"
:
"
19.0.0
"
,
"jsdom-global"
:
"
3.0.2
"
,
"mocha"
:
"
9.2.2
"
,
"nyc"
:
"
15.1.0
"
,
"prompts"
:
"
2.4.2
"
,
"sass"
:
"
1.49.9
"
,
"sinon"
:
"
13.0.1
"
,
"sinon-chrome"
:
"
3.0.1
"
,
"webpack-stream"
:
"
7.0.0
"
,
"yargs"
:
"
17.3.1
"
},
"devDependencies"
: {
"coveralls"
:
"
3.1.1
"
}
}
Back
|
FazBrowse Home
|
New Git URL