Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Initial scaffolding
Browse files Browse the repository at this point in the history
  • Loading branch information
Jimmy Jia committed May 25, 2015
1 parent b883c4a commit 6f9cffa
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .babelrc
@@ -0,0 +1,3 @@
{
"stage": 0
}
6 changes: 6 additions & 0 deletions .eslintrc
@@ -0,0 +1,6 @@
{
"parser": "babel-eslint",
"rules": {
"strict": 0
}
}
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -25,3 +25,6 @@ build/Release
# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules

# Transpiled code
/lib
6 changes: 6 additions & 0 deletions .npmignore
@@ -0,0 +1,6 @@
/src
/test
/.babelrc
/.eslintrc
/.idea
/.npmignore
37 changes: 37 additions & 0 deletions package.json
@@ -0,0 +1,37 @@
{
"name": "cls-isoflux",
"version": "0.0.0",
"description": "Easy isomorphic Flux with continuation-local proxies",
"main": "index.js",
"scripts": {
"build": "eslint src && babel src --out-dir lib",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taion/cls-isoflux.git"
},
"keywords": [
"flux",
"isomorphic",
"react"
],
"author": "Jimmy Jia",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/taion/cls-isoflux/issues"
},
"homepage": "https://github.com/taion/cls-isoflux#readme",
"dependencies": {
"cls-middleware": "^1.1.0",
"continuation-local-storage": "^3.1.4"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-eslint": "^3.1.9",
"chai": "^2.3.0",
"eslint": "^0.21.2",
"mocha": "^2.2.5"
}
}
Empty file added src/index.js
Empty file.
Empty file added test/test.js
Empty file.

0 comments on commit 6f9cffa

Please sign in to comment.