-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "awesometv",
"version": "0.1.0",
"description": "web app for see information of movies with the tvmaze api",
"main": "index.js",
"scripts": {
"public": "mkdir public",
"build-js": "browserify -t [babelify --presets [ es2015 ] ] src/index.js > public/app.js",
"copy-files": "cp src/index.css public/app.css && cp src/index.html public/index.html",
"build": "npm run public && npm run build-js && npm run copy-files",
"serve": "serve public"
},
"keywords": [
"webapp",
"js",
"javascript"
],
"author": "@iCarlosSz",
"license": "MIT",
"dependencies": {
"jquery": "^3.1.1",
"page": "^1.7.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"serve": "^1.4.0"
},
"repository": {
"type": "git",
"url": "[email protected]:icarlossz/AwesomeTV.git"
},
"bugs": {
"url": "https://github.com/icarlossz/AwesomeTV/issues"
},
"homepage": "https://github.com/icarlossz/AwesomeTV#readme"
}