-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "chrome-extension-cli",
"version": "1.5.0",
"description": "The CLI for your next Chrome Extension.",
"repository": "dutiyesh/chrome-extension-cli",
"main": "index.js",
"bin": {
"chrome-extension-cli": "index.js"
},
"scripts": {
"format": "prettier --write --ignore-unknown 'index.js' '{config,scripts,utils,templates}/**/*.{js,ts,css,html,json}'"
},
"keywords": [
"chrome",
"extension",
"cli",
"javascript",
"typescript",
"node",
"webpack",
"google",
"template",
"popup",
"override-page",
"devtools",
"side-panel"
],
"author": {
"name": "Dutiyesh Salunkhe",
"email": "[email protected]",
"url": "http://dutiyesh.com"
},
"bugs": {
"url": "https://github.com/dutiyesh/chrome-extension-cli/issues"
},
"engines": {
"node": ">=8"
},
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^3.0.1",
"cross-spawn": "^7.0.0",
"fs-extra": "^8.1.0",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"prettier": "^2.6.2"
}
}