-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.72 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
{
"name": "MyBlog",
"version": "1.0.0",
"private": true,
"description": "Resonal blog of Phil Rigovanov",
"main": "index.js",
"scripts": {
"lint": "write-good src/posts/*.md",
"start": "nodemon -e md,styl,jade,css,html,js,coffee,json,cson --ignore build/ ./build.coffee",
"serve": "serve build -p ${PORT:-3000}",
"build": "coffee build.coffee",
"deploy": "git push \"git@github.com:a1ip/rigovanov.ru.git\"; npm run build && cd build && git init . && git add . && git commit -m \"Deploy\"; git push \"git@github.com:a1ip/old.a1ip.github.io.git\" master:master --force && rm -rf .git"
},
"repository": {
"type": "git",
"url": "https://github.com/a1ip/a1ip.github.io.git"
},
"author": {
"name": "Phil Rigovanov",
"email": "phil@rigovanov.ru",
"url": "http://rigovanov.ru"
},
"license": "MIT",
"devDependencies": {
"coffee-script": "^1.12.7",
"gulpsmith": "^0.5.4",
"highlighter": "^0.0.3",
"jade": "^1.9.2",
"metalsmith": "^1.7.0",
"metalsmith-asciidoc": "^1.1.0",
"metalsmith-assets": "^0.1.0",
"metalsmith-build-date": "^0.1.0",
"metalsmith-clean-css": "^2.0.0",
"metalsmith-collections": "^0.7.0",
"metalsmith-collections-paginate": "^2.0.1",
"metalsmith-concat": "^2.0.0",
"metalsmith-define": "^1.0.0",
"metalsmith-drafts": "^0.0.1",
"metalsmith-feed": "^0.0.6",
"metalsmith-markdown": "^0.2.2",
"metalsmith-pagination": "^1.5.0",
"metalsmith-permalinks": "^0.4.0",
"metalsmith-sitemap": "^1.2.2",
"metalsmith-snippet": "^1.0.1",
"metalsmith-templates": "^0.7.0",
"metalsmith-uglify": "^2.3.3",
"moment": "^2.24.0",
"nodemon": "^1.19.4",
"serve": ">=10.1.2",
"write-good": "^0.9.1"
}
}