Skip to content

Commit

Permalink
chore: Configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
mohebifar committed Mar 30, 2016
1 parent 65e8c13 commit e351a1c
Show file tree
Hide file tree
Showing 5 changed files with 108 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .babelrc
@@ -0,0 +1,12 @@
{
"presets": [
"es2015",
"stage-0",
"react"
],
"plugins": [
[
"transform-decorators-legacy"
]
]
}
10 changes: 10 additions & 0 deletions .editorconfig
@@ -0,0 +1,10 @@
[*]
indent_style = space
end_of_line = lf
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true

[*.md]
max_line_length = 0
trim_trailing_whitespace = false
36 changes: 36 additions & 0 deletions .gitignore
@@ -0,0 +1,36 @@
# Created by .ignore support plugin (hsz.mobi)
### Node template
# Logs
logs
*.log
npm-debug.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

# Editor/IDE files
.idea

# Built lib
lib
3 changes: 3 additions & 0 deletions .npmignore
@@ -0,0 +1,3 @@
src
.gitignore
.npmignore
47 changes: 47 additions & 0 deletions package.json
@@ -0,0 +1,47 @@
{
"name": "grafgiti",
"version": "1.0.0",
"description": "Create graffity on your gritty github contributions wall",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"babel": "babel src --out-dir lib",
"start": "NODE_PATH=./lib node ./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohebifar/grafgiti.git"
},
"keywords": [
"graffity",
"github",
"contributions"
],
"author": "Mohamad Mohebifar",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohebifar/grafgiti/issues"
},
"homepage": "https://github.com/mohebifar/grafgiti#readme",
"dependencies": {
"babel-polyfill": "^6.7.4",
"blessed": "^0.1.81",
"moment": "^2.12.0",
"react": "^0.14.7",
"react-blessed": "^0.1.7",
"react-redux": "^4.4.1",
"redux": "^3.3.1",
"simple-git": "^1.31.0",
"winston": "^2.2.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"redux-saga": "^0.9.5"
}
}

0 comments on commit e351a1c

Please sign in to comment.