Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Dependency update & remove lib directory
  • Loading branch information
pveyes committed Jan 28, 2016
commit d64a46609d38279405ed8269d7af95b499506d0a
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
lib/
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ sudo: false
language: node_js
node_js:
- "0.12"
- "4.0"
- "4"
- "5"
script: npm run travis

before_install:
Expand Down
136 changes: 0 additions & 136 deletions lib/index.js

This file was deleted.

19 changes: 13 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"lint": "standard src test",
"build": "babel --out-dir lib src",
"autotest": "chokidar src test -c 'npm test'",
"test": "mocha --compilers js:babel/register",
"test": "mocha --compilers js:babel-core/register",
"posttest": "npm run lint && npm run build",
"travis": "npm run test",
"prepublish": "npm run build"
Expand All @@ -28,13 +28,20 @@
},
"homepage": "https://github.com/css-modules/postcss-modules-constants#readme",
"devDependencies": {
"babel": "^5.8.23",
"chokidar": "^1.2.0",
"mocha": "^2.3.3",
"standard": "^5.3.1"
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"chokidar": "^1.4.2",
"mocha": "^2.4.4",
"standard": "^5.4.1"
},
"dependencies": {
"icss-replace-symbols": "^1.0.2",
"postcss": "^5.0.10"
"postcss": "^5.0.14"
},
"babel": {
"presets": [
"es2015"
]
}
}