Skip to content

Commit

Permalink
Prepare for npm publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
mdebbar committed Sep 9, 2016
1 parent 47f686f commit 02122a4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Mac OS
*.swp
.DS_Store

# Compiled files
lib/

# Logs
logs
*.log
Expand Down
Empty file removed lib/index.js
Empty file.
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{
"name": "mobx-cache",
"version": "0.0.1",
"version": "0.0.3",
"description": "An observable data cache with MobX",
"author": "Mouad Debbar <mouad.debbar@gmail.com>",
"main": "lib/index.js",
"main": "lib/mobx-cache.js",
"scripts": {
"clean": "rimraf lib coverage",
"es5": "babel -d lib/ src/",
"test": "jest --coverage && cat ./coverage/lcov.info | coveralls"
"test": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"prepublish": "npm run clean && npm run es5"
},
"repository": {
"type": "git",
"url": "https://github.com/mdebbar/javascript-starter-kit"
"url": "https://github.com/mdebbar/mobx-cache"
},
"keywords": [],
"devDependencies": {
Expand All @@ -25,7 +27,8 @@
"coveralls": "^2.11.12",
"eslint": "^3.4.0",
"eslint-plugin-import": "^1.14.0",
"jest": "^15.1.1"
"jest": "^15.1.1",
"rimraf": "^2.5.4"
},
"dependencies": {
"babel-runtime": "^6.11.6",
Expand Down

0 comments on commit 02122a4

Please sign in to comment.