-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.61 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.61 KB
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
88
89
90
91
92
93
94
{
"name": "blog.losttype.com",
"version": "3.0.0",
"description": "The Lost Type Co-op blog.",
"main": "build/",
"homepage": "http://blog.losttype.com",
"author": "Kenneth Ormandy <hello@kennethormandy.com> (http://kennethormandy.com)",
"license": "Copyright © 2011–2015 The Lost Type Co-op",
"private": true,
"repository": "git@github.com:losttype/blog.losttype.com.git",
"keywords": [],
"dependencies": {
"dropcap.js": "1.0.0",
"fontfaceobserver": "1.5.4",
"smoothscroll": "0.1.0",
"vague-time": "1.2.0",
"zoom.js": "fat/zoom.js"
},
"devDependencies": {
"autoprefixer": "5.2.0",
"bourbon": "4.2.3",
"bourbon-neat": "1.7.2",
"browser-sync": "2.7.13",
"browserify": "11.0.1",
"cheerio": "0.19.0",
"fg-loadcss": "0.1.6",
"fg-loadjs": "0.2.0",
"figment": "git://github.com/kennethormandy/figment.git#v0.6.2",
"handlebars": "3.0.3",
"harp-minify": "0.3.2",
"helper-moment": "0.1.0",
"kss": "2.1.0",
"losttype-contributors": "0.4.1",
"metalsmith": "1.7.0",
"metalsmith-better-excerpts": "0.1.5",
"metalsmith-collections": "0.9.0",
"metalsmith-collections-paginate": "2.0.1",
"metalsmith-handlebars-within": "0.1.0",
"metalsmith-jekyll-dates": "0.0.5",
"metalsmith-markdown": "0.2.1",
"metalsmith-metadata": "0.0.1",
"metalsmith-paginate": "0.3.0",
"metalsmith-permalinks": "0.4.0",
"metalsmith-publish": "0.1.3",
"metalsmith-register-helpers": "0.4.0",
"metalsmith-register-partials": "1.0.2",
"metalsmith-serve": "0.0.3",
"metalsmith-tags": "0.10.1",
"metalsmith-templates": "0.7.0",
"metalsmith-typogr": "0.1.0",
"node-sass": "3.4.2",
"nodemon": "1.3.7",
"normalize-opentype.css": "0.2.4",
"normalize.css": "3.0.3",
"onchange": "1.1.0",
"standard": "4.5.4",
"surge": "latest",
"travis-ci": "2.0.3",
"typogr": "kennethormandy/typogr.js#ko-wrapWidont"
},
"standard": {
"global": [
"loadCSS",
"loadJS",
"dug",
"WebFont"
],
"ignore": [
"init.js"
]
},
"scripts": {
"postinstall": "cp ./node_modules/losttype-contributors/index.json ./src/authors.json",
"lint": "standard src/js/*.js",
"test": "echo \"Error: no test specified…yet! Pull requests on https://github.com/losttype/blog.losttype.com are greatly appreciated.\" && exit 0",
"posttest": "npm run lint",
"build-html": "node_modules/metalsmith/bin/metalsmith",
"build-nofollow": "echo 'User-agent: *\nDisallow: /' > build/robots.txt",
"build-css": "node-sass src/css/index.scss | autoprefixer > build/css/index.css",
"build-js": "browserify src/js/index.js -o build/js/index.js",
"build": "npm run build-html && npm run build-css && npm run build-js",
"watch-html": "onchange './_templates/*.hbs' './_includes/*.hbs' 'src/**/*.md' 'src/**/*.html' -- npm run build-html",
"watch-css": "onchange './src/**/*.scss' -- npm run build-css",
"watch-js": "onchange './src/**/*.js' -- npm run build-js -- -dv",
"sync": "browser-sync start --files './build/css/*.css' --server \"build\" --no-open",
"start": "npm run build && npm run watch-html & npm run watch-css & npm run watch-js & npm run sync",
"styleguide": "kss-node --source ./src/css --destination ./build/styleguide --css /css/index.css --placeholder=\"\" --homepage README.md",
"trigger": "node trigger.js",
"predeploy": "npm test && npm run build",
"deploy": "surge --project $npm_package_main --domain $npm_package_homepage",
"predeploy-pr": "npm test && npm run build && npm run build-nofollow",
"deploy-pr": "surge --project $npm_package_main"
}
}