-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
35 lines (35 loc) · 1.32 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
{
"name": "comcast.github.io",
"private": true,
"version": "1.0.0",
"description": "Comcast Open Source Software Portal",
"main": "index.html",
"scripts": {
"compress": "npm-run-all compress:*",
"compress:css": "uglifycss --output style/css.css style/all-digital.css style/style.css",
"compress:js": "uglifyjs -o js/javascript.js --compress --mangle -- js/jquery.min.js js/GitHub.bundle.min.js js/promise.min.js js/menu_toggle.js js/menu_sticky.js js/carousel.js js/gh_stats.js js/newest_projects.js",
"transform": "npm-run-all transform:*",
"transform:hacktoberfest": "npx babel js/octokit-rest.js js/hacktoberfest_stats.js -o js/hacktoberfest.js --presets minify",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Comcast/Comcast.github.io.git"
},
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Comcast/Comcast.github.io/issues"
},
"homepage": "https://comcast.github.io",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.6.2",
"babel-preset-airbnb": "^4.0.1",
"babel-preset-minify": "^0.5.1",
"npm-run-all": "^4.1.1",
"uglify-js": "^3.0.25",
"uglifycss": "0.0.27"
}
}