-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 4.31 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "international-criminal-justice-today",
"version": "1.4.6",
"description": "ABA ICC Project News Portal",
"main": "index.html",
"scripts": {
"version:major": "npm version major -m 'Breaking Release'",
"version:minor": "npm version minor -m 'Feature Release'",
"version:patch": "npm version patch -m 'bump version for fixes minor changes'",
"push:origin": "git push --tags origin HEAD:lean",
"test": "echo \"Error: no test specified\" && exit 0",
"clean:assets": "rm -rf assets",
"copy:files": "rm -f 'assets/js/legacy/*' && copyfiles -f node_modules/flexibility/dist/flexibility.js node_modules/html5shiv/dist/html5shiv.min.js assets/js/legacy && rm -rf assets/font/ && copyfiles -u 2 '_app/font/**/*.*' ./assets/font/",
"uglify:js": "mkdir -p assets/js && uglifyjs _app/js/*.js -m -o assets/js/app.js && uglifyjs node_modules/jquery/dist/jquery.js node_modules/flickity/dist/flickity.pkgd.js _app/js/*.js -m -c -o assets/js/app.min.js",
"lint:js": "eslint _app/js",
"build:js": "npm run lint:js && npm run uglify:js",
"watch:js": "onchange '_app/js/*.js' -- npm run build:js",
"compress:img": "imagemin _app/images assets/images -p",
"watch:img": "onchange '_app/images/**/*.*' -- npm run compress:img",
"copy:tachyons": "copyfiles -f 'node_modules/tachyons-z-index/src/*.css' 'node_modules/tachyons/src/*.css' '_app/css/src/_tachyons' ",
"copy:basscss": "copyfiles -u 1 node_modules/basscss-*/**/index.css '_app/css/src/_basscss' && copyfiles -u 1 node_modules/basscss-*/**/lib/*.* '_app/css/src/_basscss'",
"build:css": "postcss -c _app/css/postcss.config.js",
"hotbuild:css": "copyfiles -f assets/css/* _site/assets/css",
"watch:css": "onchange '_app/css/**/*.css' -- run-s build:css hotbuild:css",
"build:scss": "node-sass --include-path node_modules/bourbon-neat/app/assets/stylesheets --include-path node_modules/bourbon/app/assets/stylesheets --output-style compressed -o assets/css _app/scss",
"watch:scss": "onchange '_app/scss/**/*.scss' -- run-s build:scss hotbuild:css",
"clean:jekyll": "bundle exec jekyll clean",
"build:jekyll": "JEKYLL_ENV=production bundle exec jekyll build",
"watch:jekyll": "onchange '_app/_includes/**/*' '_app/_layouts/**/*' '**/*.md' '_data/*.*' -- run-s build:jekyll reload",
"serve": "browser-sync start --server '_site' --files './_site/assets/js/app.min.js' './_site/assets/css/main.css'",
"reload": "browser-sync reload",
"start": "npm-run-all copy:files build:scss build:js compress:img build:jekyll --parallel watch:scss watch:js watch:jekyll watch:img serve",
"watch": "npm-run-all build:jekyll --parallel watch:scss watch:js watch:jekyll watch:img serve",
"start:fresh": "npm-run-all copy:files copy:basscss build:css build:js compress:img build:jekyll --parallel watch:css watch:js watch:jekyll watch:img serve",
"start:without-scss": "run-p build:jekyll watch:css watch:js watch:jekyll watch:img serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/budparr/jekyll-base.git"
},
"keywords": [
"jekyll"
],
"author": "budparr",
"license": "MIT",
"bugs": {
"url": "https://github.com/budparr/jekyll-base/issues"
},
"homepage": "https://github.com/budparr/jekyll-base#readme",
"devDependencies": {
"autoprefixer": "^6.3.6",
"basscss": "^8.0.1",
"basscss-addons": "^1.0.0-beta4",
"basscss-basic": "^1.0.0",
"bourbon-neat": "^1.7.4",
"browser-sync": "^2.13.0",
"copyfiles": "^0.2.1",
"cssnano": "^3.6.2",
"eslint": "^2.11.1",
"eslint-config-google": "^0.5.0",
"flexibility": "^1.0.5",
"flickity": "^2.0.2",
"html5shiv": "^3.7.3",
"imagemin-cli": "^2.1.0",
"install": "^0.8.1",
"jquery": "^2.2.4",
"node-neat": "^1.7.2",
"node-sass": "^3.4.2",
"normalize-opentype.css": "^0.2.4",
"normalize.css": "^4.1.1",
"npm-run-all": "^2.1.1",
"onchange": "^2.4.0",
"postcss": "^5.0.21",
"postcss-calc": "^5.2.1",
"postcss-cli": "^2.5.2",
"postcss-color-function": "^2.0.1",
"postcss-custom-media": "^5.0.1",
"postcss-custom-properties": "^5.0.1",
"postcss-discard-comments": "^2.0.4",
"postcss-flexibility": "^1.0.3",
"postcss-import": "^8.1.2",
"sanitize.css": "^4.0.0",
"tachyons": "^4.0.1",
"tachyons-z-index": "^1.0.0",
"uglify-js": "^2.6.2"
}
}