-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 798 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 798 Bytes
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
{
"name": "create-react-app-chrome-extension",
"version": "0.1.0",
"description": "Turn a basic create-react-app application into a chrome extension with one line.",
"engines": {
"node": ">=4"
},
"bin": {
"create-react-app-chrome-extension": "./index.js"
},
"keywords": [
"create-react-app",
"react",
"chrome",
"extension"
],
"author": "Jake Dluhy",
"repository": "JakeDluhy/create-react-app-chrome-extension",
"license": "MIT",
"bugs": {
"url": "https://github.com/JakeDluhy/create-react-app-chrome-extension/issues"
},
"homepage": "https://github.com/JakeDluhy/create-react-app-chrome-extension#readme",
"dependencies": {
"chalk": "^2.3.2",
"commander": "^2.15.1",
"fs-extra": "^5.0.0",
"prompt-confirm": "^1.2.0"
}
}