-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
92 lines (92 loc) · 2.56 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
88
89
90
91
92
{
"name": "harmonic",
"description": "The next static site generator",
"homepage": "https://github.com/JSRocksHQ/harmonic",
"version": "0.5.1",
"engines": {
"node": ">=0.10"
},
"preferGlobal": true,
"bin": {
"harmonic": "entry_points/harmonic.js"
},
"files": [
"dist",
"!dist/test",
"entry_points",
"doc"
],
"repository": {
"type": "git",
"url": "git://github.com/JSRocksHQ/harmonic.git"
},
"keywords": [
"ssg",
"generator",
"blog",
"scaffold",
"markdown",
"website",
"static",
"static generator",
"static site generator",
"ES6",
"ES7",
"ES2015",
"ES2016"
],
"dependencies": {
"babel-runtime": "5.8.34",
"bluebird": "^3.1.1",
"browser-sync": "^2.11.0",
"chokidar": "^1.4.2",
"cli-color": "^1.1.0",
"co": "^3.1.0",
"co-prompt": "^1.0.0",
"commander": "^2.9.0",
"core-js": "^2.0.3",
"dedent": "^0.6.0",
"less": "^2.5.3",
"marked-metadata": "0.0.6",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"npm": "^3.5.3",
"nunjucks": "^2.3.0",
"open": "0.0.5",
"permalinks": "^0.3.1",
"pretty-ms": "^2.1.0",
"rimraf": "^2.4.1",
"stylus": "^0.53.0"
},
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"chalk": "^1.1.1",
"glob-manipulate": "^1.1.1",
"gulp": "^3.9.0",
"gulp-babel": "^5.3.0",
"gulp-eslint": "^1.1.1",
"gulp-filter": "^3.0.1",
"gulp-load-plugins": "^1.2.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-src-ordered-globs": "^1.0.3",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5",
"merge-stream": "^1.0.0",
"mocha": "^2.3.4",
"should": "^8.1.1",
"stream-array": "^1.1.1",
"through2": "^2.0.0",
"vinyl-paths": "^1.0.0"
},
"author": "Jaydson Gomes <[email protected]> (http://jaydson.org/)",
"license": "MIT",
"scripts": {
"dev": "gulp",
"test": "gulp build",
"update-babel": "npm install --save --save-exact babel-runtime@5 && npm update --depth=1 babel-core",
"require-clean-work-tree": "(git update-index -q --ignore-submodules --refresh && git diff-files --quiet --ignore-submodules && git diff-index --cached --quiet --ignore-submodules HEAD --) || (echo You have uncommitted changes. Please commit or stash them. >&2 && exit 1)",
"preversion": "git pull && npm run --silent require-clean-work-tree && npm run --silent update-babel && (git diff-files --quiet -- package.json || git commit -m \"update Babel\" -- package.json) && npm test",
"postversion": "git push --follow-tags && npm publish"
}
}