forked from mixtube/mixtube
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 737 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 737 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
{
"name": "mixtube",
"description": "Mixtube umbrella module",
"version": "1.0.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mixtube/mixtube.git"
},
"license": "MIT",
"engines": {
"node": ">= 6",
"npm": ">= 3"
},
"scripts": {
"install:app": "cd app && npm install",
"install:build": "cd build && npm install",
"postinstall": "npm-run-all --parallel install:*",
"start": "npm run debug",
"debug": "npm run gulp-build -- --watch --serve",
"deploy:gh": "npm run gulp-build -- deploy:gh --baseUrl /mixtube/ --production",
"gulp-build": "build/node_modules/.bin/gulp --cwd build build"
},
"dependencies": {
"npm-run-all": "^3.1.0"
}
}