react-toolbox/package.json

95 lines
2.8 KiB
JSON
Raw Normal View History

2015-05-28 18:20:28 +03:00
{
2015-09-22 10:25:15 +03:00
"name": "react-toolbox",
2015-11-15 21:42:59 +03:00
"version": "0.12.0",
2015-09-22 10:25:15 +03:00
"description": "A set of complementary tools to ReactJS.",
2015-10-19 22:48:31 +03:00
"author": "React Toolbox Team (http://github.com/react-toolbox)",
"contributors": [
{
"name": "Javi Jimenez Villar",
"url": "http://soyjavi.com/",
2015-10-28 19:21:51 +03:00
"email": "javi.jimenez.villar@gmail.com"
},
{
"name": "Javi Velasco Arjona",
"url": "http://javivelasco.com/",
"email": "javier.velasco86@gmail.com"
}
2015-10-19 22:48:31 +03:00
],
"main": "./lib",
2015-09-22 10:25:15 +03:00
"scripts": {
2015-10-28 19:21:51 +03:00
"start": "node ./server",
2015-10-29 08:33:21 +03:00
"lint": "eslint ./ --ext .js,.jsx",
"babel": "babel ./components --out-dir ./lib",
2015-10-29 08:33:21 +03:00
"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"
2015-06-13 14:18:31 +03:00
},
2015-09-22 10:25:15 +03:00
"bugs": {
"url": "https://github.com/react-toolbox/react-toolbox/issues",
"email": "issues@react-toolbox.com"
2015-06-20 09:29:43 +03:00
},
2015-09-22 10:25:15 +03:00
"keywords": [
"react",
"react-component",
"material design",
"toolkit",
"components"
],
"license": "MIT",
2015-10-23 01:07:07 +03:00
"peerDependencies": {
"react": "^0.14",
"react-dom": "^0.14.0",
"react-addons-css-transition-group": "^0.14.0",
"normalize.css": "^3.0.3"
2015-05-28 18:20:28 +03:00
},
"devDependencies": {
"autoprefixer": "^6.0.3",
2015-10-23 11:53:09 +03:00
"babel": "^5.8.23",
2015-09-22 10:25:15 +03:00
"babel-core": "^5.8.23",
2015-10-21 13:25:07 +03:00
"babel-eslint": "^4.1.3",
2015-09-22 10:25:15 +03:00
"babel-loader": "^5.3.2",
2015-10-29 08:33:21 +03:00
"babel-plugin-react-transform": "^1.1.1",
"core-js": "^1.2.6",
"cross-env": "^1.0.4",
2015-10-29 08:33:21 +03:00
"cpx": "^1.2.1",
"css-loader": "^0.21.0",
"eslint": "^1.7.3",
2015-09-22 10:25:15 +03:00
"eslint-plugin-react": "^3.3.1",
"expect": "^1.8.0",
2015-10-29 08:33:21 +03:00
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.8.2",
2015-09-22 10:25:15 +03:00
"karma": "^0.13.3",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "^0.1.0",
"karma-mocha": "^0.2.0",
2015-10-26 11:37:55 +03:00
"karma-phantomjs-launcher": "~0.2",
2015-09-22 10:25:15 +03:00
"karma-webpack": "^1.7.0",
"mocha": "^2.3.3",
"node-sass": "^3.3.3",
2015-10-23 11:53:09 +03:00
"normalize.css": "^3.0.3",
2015-10-29 08:33:21 +03:00
"phantomjs": "^1.9.18",
2015-09-22 10:25:15 +03:00
"phantomjs-polyfill": "0.0.1",
"postcss-loader": "^0.7.0",
2015-10-23 01:07:07 +03:00
"react": "^0.14",
"react-addons-css-transition-group": "^0.14.0",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.0",
2015-10-29 08:33:21 +03:00
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.1.1",
2015-10-23 11:25:10 +03:00
"rimraf": "^2.4.3",
"sass-loader": "^3.0.0",
2015-11-11 12:18:17 +03:00
"sinon": "git://github.com/sinonjs/sinon.git#b672042043517b9f84e14ed0fb8265126168778a",
"style-loader": "^0.13.0",
"toolbox-loader": "0.0.2",
"webpack": "^1.12.0",
2015-10-29 08:33:21 +03:00
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1"
2015-06-20 09:29:43 +03:00
},
2015-09-22 10:25:15 +03:00
"repository": "github:react-toolbox/react-toolbox"
2015-05-28 18:20:28 +03:00
}