Skip to content

Commit 51e9b99

Browse files
committed
Update dependencies, and yarn.lock
1 parent 47577c0 commit 51e9b99

File tree

3 files changed

+790
-700
lines changed

3 files changed

+790
-700
lines changed

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changes to js-csp
22

3+
## 0.9.2
4+
- UPDATED: Update dependencies
5+
36
## 0.9.1
47
- FIXED: Built script for running development in Windows environment
58

Diff for: package.json

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "js-csp",
33
"description": "CSP channels with ES6 generators, inspired by Clojurescript's core.async and Go",
4-
"version": "0.9.1",
4+
"version": "0.9.2",
55
"author": "Nguyễn Tuấn Anh <[email protected]>",
66
"browserify": {
77
"transform": [
@@ -13,44 +13,44 @@
1313
"url": "https://github.com/ubolonton/js-csp/issues"
1414
},
1515
"dependencies": {
16-
"babel-runtime": "^6.20.0",
16+
"babel-runtime": "^6.22.0",
1717
"lodash": "^4.17.4"
1818
},
1919
"devDependencies": {
20-
"babel-cli": "^6.18.0",
21-
"babel-core": "^6.21.0",
20+
"babel-cli": "^6.22.2",
21+
"babel-core": "^6.22.1",
2222
"babel-eslint": "^7.1.1",
2323
"babel-loader": "^6.2.10",
2424
"babel-plugin-rewire": "^1.0.0",
25-
"babel-plugin-transform-flow-strip-types": "^6.21.0",
26-
"babel-plugin-transform-runtime": "^6.15.0",
27-
"babel-preset-es2015": "^6.18.0",
28-
"babel-preset-stage-0": "^6.16.0",
29-
"babel-template": "^6.16.0",
30-
"babel-types": "^6.21.0",
25+
"babel-plugin-transform-flow-strip-types": "^6.22.0",
26+
"babel-plugin-transform-runtime": "^6.22.0",
27+
"babel-preset-es2015": "^6.22.0",
28+
"babel-preset-stage-0": "^6.22.0",
29+
"babel-template": "^6.22.0",
30+
"babel-types": "^6.22.0",
3131
"chai": "^3.5.0",
3232
"chokidar-cli": "^1.2.0",
3333
"cross-env": "^3.1.4",
34-
"eslint": "^3.12.2",
35-
"eslint-config-airbnb": "^13.0.0",
36-
"eslint-import-resolver-webpack": "^0.8.0",
34+
"eslint": "^3.15.0",
35+
"eslint-config-airbnb": "^14.1.0",
36+
"eslint-import-resolver-webpack": "^0.8.1",
3737
"eslint-loader": "^1.6.1",
38-
"eslint-plugin-babel": "^4.0.0",
39-
"eslint-plugin-flowtype": "^2.29.2",
38+
"eslint-plugin-babel": "^4.0.1",
39+
"eslint-plugin-flowtype": "^2.30.0",
4040
"eslint-plugin-import": "^2.2.0",
41-
"eslint-plugin-jsx-a11y": "^2.2.3",
41+
"eslint-plugin-jsx-a11y": "^4.0.0",
4242
"eslint-plugin-mocha": "^4.8.0",
43-
"eslint-plugin-react": "^6.8.0",
43+
"eslint-plugin-react": "^6.9.0",
4444
"eslint-watch": "^2.1.14",
45-
"flow-bin": "^0.37.4",
45+
"flow-bin": "^0.38.0",
4646
"istanbul": "^1.1.0-alpha.1",
47-
"jsdom": "^9.9.1",
47+
"jsdom": "^9.10.0",
4848
"jsdom-global": "^2.1.1",
4949
"mocha": "^3.2.0",
5050
"ncp": "^2.0.0",
5151
"rimraf": "^2.5.4",
5252
"transducers.js": "^0.3.2",
53-
"webpack": "^2.1.0-beta.20"
53+
"webpack": "^2.2.1"
5454
},
5555
"engines": {
5656
"node": ">= 4.1.0",
@@ -90,20 +90,20 @@
9090
"url": "https://github.com/ubolonton/js-csp.git"
9191
},
9292
"scripts": {
93+
"babel:es": "babel -d es src",
94+
"babel:node": "babel -d lib src",
9395
"build": "npm run build:node && npm run build:es && npm run build:browser",
9496
"build:browser": "webpack --config webpack.config.js",
9597
"build:es": "node -e \"require('ncp').ncp('./src', './es')\" && cross-env ES_PRESETS=true BABEL_ENV=production npm run babel:es",
9698
"build:node": "node -e \"require('ncp').ncp('./src', './lib')\" && cross-env BABEL_ENV=production npm run babel:node",
97-
"babel:es": "babel -d es src",
98-
"babel:node": "babel -d lib src",
9999
"clean": "rimraf lib build",
100100
"flow:status": "flow status; test $? -eq 0 -o $? -eq 2",
101101
"flow:stop": "flow stop",
102102
"flow:watch": "npm run flow:status && chokidar './src/**/*.js' './test/**/*.js' -c 'npm run flow:status'",
103-
"lint": "esw -w './src/**/*-test.js' './test/**/*.js'",
104103
"prepublish": "npm run build",
105104
"test": "mocha",
106105
"test:coverage": "istanbul cover node_modules/mocha/bin/_mocha",
106+
"test:lint": "esw -w './src/**/*-test.js' './test/**/*.js'",
107107
"test:watch": "mocha --watch --reporter progress"
108108
}
109109
}

0 commit comments

Comments
 (0)