setup basic env

This commit is contained in:
Hen Shalom 2018-02-28 21:35:38 +02:00
commit 86e4b85a89
4 changed files with 2676 additions and 0 deletions

6
.babelrc Normal file
View file

@ -0,0 +1,6 @@
{
"presets": [
"es2015",
"es2017"
]
}

61
.gitignore vendored Normal file
View file

@ -0,0 +1,61 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Typescript v1 declaration files
typings/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
# next.js build output
.next

2588
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

21
package.json Normal file
View file

@ -0,0 +1,21 @@
{
"name": "json-version-control",
"version": "1.0.0",
"description": "esay to use and simple json verstion control ",
"main": "index.js",
"scripts": {
"test": "mocha --require babel-core/register"
},
"author": "Hen Shalom",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"chai": "^4.1.2",
"mocha": "^5.0.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0"
}
}