diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/Gruntfile.coffee b/Gruntfile.coffee new file mode 100644 index 0000000..50777f7 --- /dev/null +++ b/Gruntfile.coffee @@ -0,0 +1,14 @@ +"use strict" +module.exports = (grunt) -> + + # Load all grunt tasks + require("matchdep").filterDev("grunt-*").forEach grunt.loadNpmTasks + + # Project configurations + grunt.initConfig + config: + pkg: grunt.file.readJSON("package.json") + + grunt.registerTask "default", "Default task aka. build task", [ + "changelog" + ] diff --git a/package.json b/package.json new file mode 100644 index 0000000..d4d52d6 --- /dev/null +++ b/package.json @@ -0,0 +1,33 @@ +{ + "name": "chinese-copywriting-guidelines", + "version": "0.0.1", + "description": "Chinese Copywriting Guidelines", + "author": "Tunghsiao Liu", + "homepage": "http://sparanoid.com/", + "main": "README.md", + "scripts": { + "test": "grunt" + }, + "repository": { + "type": "git", + "url": "git://github.com/sparanoid/chinese-copywriting-guidelines.git" + }, + "bugs": { + "url": "http://github.com/sparanoid/chinese-copywriting-guidelines/issues" + }, + "licenses": { + "type": "WTFPL", + "url": "http://github.com/sparanoid/chinese-copywriting-guidelines/blob/master/LICENSE" + }, + "keywords": [ + "chinese", + "copywriting", + "guideline" + ], + "readmeFilename": "README.md", + "devDependencies": { + "grunt": "^0.4.5", + "grunt-conventional-changelog": "^1.1.0", + "matchdep": "^0.3.0" + } +}