Skip to content

Commit

Permalink
Initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
anaisbetts committed Jan 7, 2016
0 parents commit 71b6a7b
Show file tree
Hide file tree
Showing 5 changed files with 80 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .babelrc
@@ -0,0 +1,4 @@
{
"presets": ["stage-0", "es2015"],
"sourceMaps": "inline"
}
30 changes: 30 additions & 0 deletions .gitignore
@@ -0,0 +1,30 @@
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules

lib
test-dist
15 changes: 15 additions & 0 deletions .jshintrc
@@ -0,0 +1,15 @@
{
"es5": true,
"esnext": true,
"eqeqeq": true,
"eqnull": true,
"expr": true,
"latedef": true,
"onevar": true,
"noarg": true,
"node": true,
"trailing": true,
"undef": true,
"unused": true,
"browser": true
}
1 change: 1 addition & 0 deletions .npmignore
@@ -0,0 +1 @@
test-dist/
30 changes: 30 additions & 0 deletions package.json
@@ -0,0 +1,30 @@
{
"name": "serf-build",
"version": "0.0.1",
"description": "The simplest GitHub build server",
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/paulcbetts/serf-build"
},
"keywords": [
"build", "ci"
],
"author": "Paul Betts <paul@paulbetts.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulcbetts/serf-build/issues"
},
"homepage": "https://github.com/paulcbetts/serf-build",
"dependencies": {
"lodash": "^3.10.1"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13"
}
}

0 comments on commit 71b6a7b

Please sign in to comment.