-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1000 Bytes
/
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
{
"name": "gist-download-extension",
"version": "1.0.0",
"description": "Chrome extension with ReactJS to download Github Gist.",
"main": "src/js/main.js",
"scripts": {
"build": "parcel build src/js/main.js -d src/build/ -o main.js",
"watch": "parcel watch src/js/main.js -d src/build/ -o main.js"
},
"dependencies": {
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"parcel-bundler": "^1.6.2",
"prettier": "^1.14.3",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khriztianmoreno/gist-download-extension.git"
},
"keywords": [
"gist",
"chrome",
"extension",
"reactjs",
"parcel"
],
"author": "Cristian Moreno <khriztianmoreno@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/khriztianmoreno/gist-download-extension/issues"
},
"homepage": "https://github.com/khriztianmoreno/gist-download-extension#readme"
}