-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (60 loc) · 1.81 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
{
"name": "mlb-logos",
"description": "An exploration in the evolution of all MLB team logos.",
"homepage": "https://chrisopedia.github.io/mlb-logos/",
"version": "0.1.0",
"author": "Newton Koumantzelis <chrisohpedia@gmail.com>",
"keywords": [
"responsive",
"css",
"sass",
"scss",
"js",
"mlb",
"baseball",
"major league baseball",
"mobile-first"
],
"main": "dist/scripts/legion.latest.js",
"files": [
"dist/",
"src/"
],
"repository": {
"type": "git",
"url": "https://github.rp-core.com/chrisopedia/mlb-logos.git"
},
"bugs": {
"url": "https://github.rp-core.com/chrisopedia/mlb-logos/issues",
"email": "chrisohpedia@gmail.com"
},
"license": "MIT",
"config": {
"dist": "styles",
"src": "src",
"docs": "_site"
},
"scripts": {
"clean": "rm -rf ${npm_package_config_dist}/*",
"postcss": "postcss --config postcss.config.json --no-map.inline --output ${npm_package_config_dist}/${npm_package_name}.min.css ${npm_package_config_src}/${npm_package_name}.css",
"prebuild": "npm run clean",
"build": "npm run postcss",
"jekyll": "bundle exec jekyll build",
"browsersync": "browser-sync start --files \"${npm_package_config_docs}/\" --server \"${npm_package_config_docs}\" --browser 'google chrome'",
"predist": "npm run build -s",
"dist": "postcss --use cssnano",
"serve": "parallelshell 'npm run postcss -- --watch' 'npm run jekyll -- --watch' 'npm run browsersync'",
"prestart": "npm run build",
"start": "npm run serve"
},
"devDependencies": {
"browser-sync": "^2.9.11",
"cssnano": "^3.6.2",
"parallelshell": "^2.0.0",
"postcss-browser-reporter": "^0.5.0",
"postcss-cli": "^2.5.2",
"postcss-cssnext": "^2.6.0",
"postcss-import": "^8.1.2",
"postcss-reporter": "^1.3.3"
}
}