|
1 | 1 | { |
2 | 2 | "name": "redux-components", |
3 | | - "version": "0.1.0", |
| 3 | + "version": "0.1.1", |
4 | 4 | "description": "A component model for Redux state trees based on the React.js component model.", |
5 | | - "main": "./index.js", |
| 5 | + "main": "lib/index.js", |
| 6 | + "jsnext:main": "es/index.js", |
6 | 7 | "scripts": { |
7 | | - "clean": "rm -rf lib", |
8 | | - "build": "mkdir -p lib && coffee -o lib src/*.coffee", |
9 | | - "prepublish": "npm run clean && npm run build" |
| 8 | + "clean": "rimraf lib build es coverage", |
| 9 | + "build:babel:commonjs": "cross-env BABEL_ENV=commonjs babel build --out-dir lib", |
| 10 | + "build:babel:es": "cross-env BABEL_ENV=es babel build --out-dir es", |
| 11 | + "build:coffee": "mkdir -p build && coffee -o build src/*.coffee", |
| 12 | + "build": "npm run build:coffee && npm run build:babel:commonjs && npm run build:babel:es", |
| 13 | + "prepublish": "npm run clean && npm run build", |
| 14 | + "test": "node_modules/.bin/mocha --recursive --compilers coffee:coffee-script/register", |
| 15 | + "coverage": "node_modules/.bin/mocha --recursive --compilers coffee:coffee-script/register --require coffee-coverage/register-istanbul", |
| 16 | + "coverageReport": "node_modules/.bin/istanbul report" |
10 | 17 | }, |
11 | 18 | "repository": { |
12 | 19 | "type": "git", |
|
24 | 31 | }, |
25 | 32 | "homepage": "https://github.com/", |
26 | 33 | "devDependencies": { |
27 | | - "babel-preset-es2015": "^6.6.0", |
28 | | - "babel-preset-stage-1": "^6.5.0", |
29 | | - "babel-register": "^6.7.2", |
| 34 | + "babel-cli": "^6.3.15", |
| 35 | + "babel-core": "^6.3.15", |
| 36 | + "babel-eslint": "^4.1.6", |
| 37 | + "babel-plugin-check-es2015-constants": "^6.3.13", |
| 38 | + "babel-plugin-transform-es2015-arrow-functions": "^6.3.13", |
| 39 | + "babel-plugin-transform-es2015-block-scoped-functions": "^6.3.13", |
| 40 | + "babel-plugin-transform-es2015-block-scoping": "^6.3.13", |
| 41 | + "babel-plugin-transform-es2015-classes": "^6.3.13", |
| 42 | + "babel-plugin-transform-es2015-computed-properties": "^6.3.13", |
| 43 | + "babel-plugin-transform-es2015-destructuring": "^6.3.13", |
| 44 | + "babel-plugin-transform-es2015-for-of": "^6.3.13", |
| 45 | + "babel-plugin-transform-es2015-function-name": "^6.3.13", |
| 46 | + "babel-plugin-transform-es2015-literals": "^6.3.13", |
| 47 | + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.13", |
| 48 | + "babel-plugin-transform-es2015-object-super": "^6.3.13", |
| 49 | + "babel-plugin-transform-es2015-parameters": "^6.3.13", |
| 50 | + "babel-plugin-transform-es2015-shorthand-properties": "^6.3.13", |
| 51 | + "babel-plugin-transform-es2015-spread": "^6.3.13", |
| 52 | + "babel-plugin-transform-es2015-sticky-regex": "^6.3.13", |
| 53 | + "babel-plugin-transform-es2015-template-literals": "^6.3.13", |
| 54 | + "babel-plugin-transform-es2015-unicode-regex": "^6.3.13", |
| 55 | + "babel-plugin-transform-es3-member-expression-literals": "^6.5.0", |
| 56 | + "babel-plugin-transform-es3-property-literals": "^6.5.0", |
| 57 | + "babel-plugin-transform-object-rest-spread": "^6.3.13", |
| 58 | + "babel-register": "^6.3.13", |
30 | 59 | "chai": "^3.5.0", |
31 | | - "coffee-script": "^1.10.0", |
| 60 | + "coffee-coverage": "^1.0.1", |
| 61 | + "coffee-script": "^1.11.1", |
| 62 | + "coffeelint": "^1.16.0", |
| 63 | + "cross-env": "^1.0.7", |
| 64 | + "istanbul": "^0.4.5", |
32 | 65 | "mocha": "^2.4.5" |
33 | 66 | }, |
34 | 67 | "dependencies": { |
35 | 68 | "inv": "0.0.1" |
36 | 69 | }, |
37 | 70 | "peerDependencies": { |
38 | | - "redux": "^3.3.1" |
| 71 | + "redux": "^3.6.0" |
39 | 72 | } |
40 | 73 | } |
0 commit comments