|
1 | 1 | {
|
2 | 2 | "name": "js-csp",
|
3 | 3 | "description": "CSP channels with ES6 generators, inspired by Clojurescript's core.async and Go",
|
4 |
| - "version": "0.9.1", |
| 4 | + "version": "0.9.2", |
5 | 5 | "author": "Nguyễn Tuấn Anh <[email protected]>",
|
6 | 6 | "browserify": {
|
7 | 7 | "transform": [
|
|
13 | 13 | "url": "https://github.com/ubolonton/js-csp/issues"
|
14 | 14 | },
|
15 | 15 | "dependencies": {
|
16 |
| - "babel-runtime": "^6.20.0", |
| 16 | + "babel-runtime": "^6.22.0", |
17 | 17 | "lodash": "^4.17.4"
|
18 | 18 | },
|
19 | 19 | "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", |
22 | 22 | "babel-eslint": "^7.1.1",
|
23 | 23 | "babel-loader": "^6.2.10",
|
24 | 24 | "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", |
31 | 31 | "chai": "^3.5.0",
|
32 | 32 | "chokidar-cli": "^1.2.0",
|
33 | 33 | "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", |
37 | 37 | "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", |
40 | 40 | "eslint-plugin-import": "^2.2.0",
|
41 |
| - "eslint-plugin-jsx-a11y": "^2.2.3", |
| 41 | + "eslint-plugin-jsx-a11y": "^4.0.0", |
42 | 42 | "eslint-plugin-mocha": "^4.8.0",
|
43 |
| - "eslint-plugin-react": "^6.8.0", |
| 43 | + "eslint-plugin-react": "^6.9.0", |
44 | 44 | "eslint-watch": "^2.1.14",
|
45 |
| - "flow-bin": "^0.37.4", |
| 45 | + "flow-bin": "^0.38.0", |
46 | 46 | "istanbul": "^1.1.0-alpha.1",
|
47 |
| - "jsdom": "^9.9.1", |
| 47 | + "jsdom": "^9.10.0", |
48 | 48 | "jsdom-global": "^2.1.1",
|
49 | 49 | "mocha": "^3.2.0",
|
50 | 50 | "ncp": "^2.0.0",
|
51 | 51 | "rimraf": "^2.5.4",
|
52 | 52 | "transducers.js": "^0.3.2",
|
53 |
| - "webpack": "^2.1.0-beta.20" |
| 53 | + "webpack": "^2.2.1" |
54 | 54 | },
|
55 | 55 | "engines": {
|
56 | 56 | "node": ">= 4.1.0",
|
|
90 | 90 | "url": "https://github.com/ubolonton/js-csp.git"
|
91 | 91 | },
|
92 | 92 | "scripts": {
|
| 93 | + "babel:es": "babel -d es src", |
| 94 | + "babel:node": "babel -d lib src", |
93 | 95 | "build": "npm run build:node && npm run build:es && npm run build:browser",
|
94 | 96 | "build:browser": "webpack --config webpack.config.js",
|
95 | 97 | "build:es": "node -e \"require('ncp').ncp('./src', './es')\" && cross-env ES_PRESETS=true BABEL_ENV=production npm run babel:es",
|
96 | 98 | "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", |
99 | 99 | "clean": "rimraf lib build",
|
100 | 100 | "flow:status": "flow status; test $? -eq 0 -o $? -eq 2",
|
101 | 101 | "flow:stop": "flow stop",
|
102 | 102 | "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'", |
104 | 103 | "prepublish": "npm run build",
|
105 | 104 | "test": "mocha",
|
106 | 105 | "test:coverage": "istanbul cover node_modules/mocha/bin/_mocha",
|
| 106 | + "test:lint": "esw -w './src/**/*-test.js' './test/**/*.js'", |
107 | 107 | "test:watch": "mocha --watch --reporter progress"
|
108 | 108 | }
|
109 | 109 | }
|
0 commit comments