Skip to content

Commit b1594eb

Browse files
authored
Merge pull request #60 from css-modules/pveyes-dependency_update
Pveyes dependency update
2 parents 56bf40a + 6da5150 commit b1594eb

File tree

4 files changed

+13
-146
lines changed

4 files changed

+13
-146
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node_modules
2+
lib/

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ sudo: false
22
language: node_js
33
node_js:
44
- "0.12"
5-
- "4.0"
5+
- "4"
6+
- "5"
67
script: npm run travis
78

89
before_install:

lib/index.js

-142
This file was deleted.

package.json

+10-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"lint": "standard src test",
88
"build": "babel --out-dir lib src",
99
"autotest": "chokidar src test -c 'npm test'",
10-
"test": "mocha --compilers js:babel/register",
10+
"test": "mocha --compilers js:babel-core/register",
1111
"posttest": "npm run lint && npm run build",
1212
"travis": "npm run test",
1313
"prepublish": "npm run build"
@@ -28,13 +28,20 @@
2828
},
2929
"homepage": "https://github.com/css-modules/postcss-modules-constants#readme",
3030
"devDependencies": {
31-
"babel": "^6.5.2",
31+
"babel-cli": "^6.5.2",
32+
"babel-core": "^6.5.2",
33+
"babel-preset-es2015": "^6.3.13",
3234
"chokidar": "^1.2.0",
3335
"mocha": "^3.0.2",
3436
"standard": "^7.1.2"
3537
},
3638
"dependencies": {
3739
"icss-replace-symbols": "^1.0.2",
38-
"postcss": "^5.0.10"
40+
"postcss": "^5.0.14"
41+
},
42+
"babel": {
43+
"presets": [
44+
"es2015"
45+
]
3946
}
4047
}

0 commit comments

Comments
 (0)