0.14.2 release

old
Javi Velasco 2016-03-07 09:53:50 +01:00
parent 2ceeabfdc5
commit 3ee2e9438c
1 changed files with 42 additions and 36 deletions

View File

@ -1,56 +1,43 @@
{ {
"name": "react-toolbox", "name": "react-toolbox",
"version": "0.14.1",
"homepage": "http://www.react-toolbox.com",
"description": "A set of React components implementing Google's Material Design specification with the power of CSS Modules.", "description": "A set of React components implementing Google's Material Design specification with the power of CSS Modules.",
"author": "React Toolbox Team (http://github.com/react-toolbox)", "homepage": "http://www.react-toolbox.com",
"version": "0.14.2",
"main": "./lib",
"author": {
"name": "React Toolbox Team",
"url": "http://github.com/react-toolbox"
},
"contributors": [ "contributors": [
{ {
"name": "Javi Jimenez Villar", "name": "Javi Jimenez Villar",
"url": "http://soyjavi.com/", "email": "javi.jimenez.villar@gmail.com",
"email": "javi.jimenez.villar@gmail.com" "url": "http://soyjavi.com/"
}, },
{ {
"name": "Javi Velasco Arjona", "name": "Javi Velasco Arjona",
"url": "http://javivelasco.com/", "email": "javier.velasco86@gmail.com",
"email": "javier.velasco86@gmail.com" "url": "http://javivelasco.com/"
} }
], ],
"main": "./lib", "repository": {
"scripts": { "type": "git",
"start": "cross-env NODE_ENV=development UV_THREADPOOL_SIZE=100 node ./server", "url": "git+https://github.com/react-toolbox/react-toolbox.git"
"lint": "eslint ./ --ext .js,.jsx",
"babel": "babel ./components --out-dir ./lib",
"sass": "cpx './components/**/*.scss' ./lib",
"build": "cross-env NODE_ENV=production npm run babel && npm run sass",
"clean": "rimraf ./lib",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"test": "cross-env NODE_ENV=test karma start",
"test:watch": "cross-env NODE_ENV=test karma start --no-single-run",
"release": "bumped release",
"patch": "bumped release patch"
}, },
"bugs": { "bugs": {
"url": "https://github.com/react-toolbox/react-toolbox/issues", "url": "https://github.com/react-toolbox/react-toolbox/issues",
"email": "issues@react-toolbox.com" "email": "issues@react-toolbox.com"
}, },
"keywords": [ "keywords": [
"components",
"material design",
"react", "react",
"react-component", "react-component",
"material design", "toolkit"
"toolkit",
"components"
], ],
"license": "MIT", "dependencies": {
"peerDependencies": { "classnames": "^2.2.1"
"classnames": "^2.2.0",
"react": "^0.14",
"react-dom": "^0.14.0",
"react-addons-css-transition-group": "^0.14.0",
"normalize.css": "^3.0.3"
}, },
"typings": "./react-toolbox.d.ts",
"devDependencies": { "devDependencies": {
"autoprefixer": "^6.2.1", "autoprefixer": "^6.2.1",
"babel-cli": "^6.3.17", "babel-cli": "^6.3.17",
@ -103,8 +90,27 @@
"webpack-dev-middleware": "^1.4.0", "webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0" "webpack-hot-middleware": "^2.6.0"
}, },
"repository": "github:react-toolbox/react-toolbox", "scripts": {
"dependencies": { "babel": "babel ./components --out-dir ./lib",
"classnames": "^2.2.1" "build": "cross-env NODE_ENV=production npm run babel && npm run sass",
} "clean": "rimraf ./lib",
"lint": "eslint ./ --ext .js,.jsx",
"patch": "bumped release patch",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"release": "bumped release",
"sass": "cpx './components/**/*.scss' ./lib",
"start": "cross-env NODE_ENV=development UV_THREADPOOL_SIZE=100 node ./server",
"test": "cross-env NODE_ENV=test karma start",
"test:watch": "cross-env NODE_ENV=test karma start --no-single-run"
},
"license": "MIT",
"peerDependencies": {
"classnames": "^2.2.0",
"normalize.css": "^3.0.3",
"react": "^0.14",
"react-addons-css-transition-group": "^0.14.0",
"react-dom": "^0.14.0"
},
"typings": "./react-toolbox.d.ts"
} }