Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tommy351 committed Jul 3, 2014
0 parents commit 8cdfd31
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
node_modules
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test/
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: node_js
node_js:
- "0.10"
- "0.11"
matrix:
allow_failures:
- node_js: "0.11"
fast_finish: true
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
TESTS = test/*.js
REPORTER ?= dot

test:
@./node_modules/.bin/mocha \
--reporter $(REPORTER) \
$(TESTS)

.PHONY: test
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Front-matter

Front-matter parser.

## License

MIT
Empty file added index.js
Empty file.
31 changes: 31 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "hexo-front-matter",
"version": "0.0.1",
"description": "Front-matter parser.",
"main": "index",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git://github.com/hexojs/front-matter.git"
},
"bugs": {
"url": "https://github.com/hexojs/front-matter/issues"
},
"keywords": [
"front-matter",
"yaml",
"yml",
"hexo"
],
"author": "Tommy Chen <tommy351@gmail.com> (http://zespia.tw)",
"license": "MIT",
"dependencies": {
"yamljs": "0.1.4"
},
"devDependencies": {
"mocha": "^1.18.2",
"chai": "^1.9.1"
}
}

0 comments on commit 8cdfd31

Please sign in to comment.