Files
xen-orchestra/package.json

128 lines
3.2 KiB
JSON
Raw Normal View History

2013-10-31 11:59:24 +01:00
{
2015-12-03 18:22:13 +01:00
"private": true,
2014-05-29 16:06:23 +01:00
"name": "xo-web",
2015-12-03 18:22:13 +01:00
"version": "5.0.0",
2015-05-19 17:44:07 +02:00
"license": "AGPL-3.0",
2014-05-29 16:06:23 +01:00
"description": "Web interface client for Xen-Orchestra",
"keywords": [
"xen",
"orchestra",
"xen-orchestra",
"web"
],
2015-12-03 18:22:13 +01:00
"homepage": "https://github.com/vatesfr/xo-web",
"bugs": "https://github.com/vatesfr/xo-web/issues",
2014-05-29 16:06:23 +01:00
"repository": {
"type": "git",
"url": "https://github.com/vatesfr/xo-web"
},
"author": {
"name": "Julien Fontanet",
"email": "julien.fontanet@vates.fr"
},
2015-12-03 18:22:13 +01:00
"preferGlobal": false,
"main": "dist/",
"bin": {},
"files": [
"dist/"
],
2013-11-12 18:09:54 +01:00
"engines": {
2016-03-24 11:04:57 +01:00
"node": ">=4"
2015-12-03 18:22:13 +01:00
},
"devDependencies": {
2016-03-17 12:13:29 +01:00
"babel-eslint": "^6.0.0-beta.6",
2016-03-10 16:30:09 +01:00
"babel-plugin-transform-decorators-legacy": "^1.3.4",
2016-03-03 14:54:29 +01:00
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
2016-03-09 14:28:18 +01:00
"babel-runtime": "^6.6.1",
2015-12-04 11:47:33 +01:00
"babelify": "^7.2.0",
2015-12-03 18:22:13 +01:00
"bootstrap": "github:twbs/bootstrap#v4-dev",
2015-12-09 18:32:02 +01:00
"browserify": "^13.0.0",
2015-12-03 18:22:13 +01:00
"browserify-plain-jade": "^0.2.2",
"bundle-collapser": "^1.2.1",
"clarify": "^1.0.5",
2016-03-03 14:54:29 +01:00
"connect": "^3.4.1",
2016-03-17 12:13:29 +01:00
"cookies-js": "^1.2.2",
2015-12-03 18:22:13 +01:00
"dependency-check": "^2.5.1",
2015-12-09 18:32:02 +01:00
"font-awesome": "^4.5.0",
2015-12-03 18:22:13 +01:00
"gulp": "github:gulpjs/gulp#4.0",
"gulp-autoprefixer": "^3.1.0",
2016-03-03 14:54:29 +01:00
"gulp-csso": "^1.1.0",
2015-12-03 18:22:13 +01:00
"gulp-embedlr": "^0.5.2",
"gulp-jade": "^1.1.0",
2016-03-03 14:54:29 +01:00
"gulp-plumber": "^1.1.0",
2016-03-10 16:30:09 +01:00
"gulp-refresh": "^1.1.0",
2016-03-03 14:54:29 +01:00
"gulp-sass": "^2.2.0",
"gulp-uglify": "^1.5.3",
2015-12-03 18:22:13 +01:00
"gulp-watch": "^4.3.5",
2016-03-09 14:28:18 +01:00
"lodash": "^4.6.1",
2016-03-03 14:54:29 +01:00
"mocha": "^2.4.5",
2015-12-03 18:22:13 +01:00
"must": "^0.13.1",
2016-03-09 14:28:18 +01:00
"nyc": "^6.0.0",
2016-03-17 12:13:29 +01:00
"react": "^15.0.0-rc.2",
"react-dom": "^15.0.0-rc.2",
2016-03-09 14:28:18 +01:00
"react-intl": "^2.0.0-rc-1",
"react-key-handler": "^0.1.0",
2016-03-03 14:54:29 +01:00
"react-redux": "^4.4.0",
"react-router": "^2.0.0",
2016-03-09 14:28:18 +01:00
"react-router-redux": "^4.0.0",
2016-03-03 14:54:29 +01:00
"redux": "^3.3.1",
"redux-devtools": "^3.1.1",
2016-03-10 16:30:09 +01:00
"redux-devtools-dock-monitor": "^1.1.0",
"redux-devtools-log-monitor": "^1.0.5",
"redux-promise": "^0.5.1",
2015-12-09 18:32:02 +01:00
"redux-router": "^1.0.0-beta7",
2016-03-09 14:28:18 +01:00
"redux-thunk": "^2.0.1",
2016-03-23 11:21:47 +01:00
"reselect": "^2.2.1",
2015-12-09 18:32:02 +01:00
"serve-static": "^1.10.2",
2015-12-03 18:22:13 +01:00
"source-map-support": "^0.4.0",
2016-03-03 14:54:29 +01:00
"standard": "^6.0.7",
"trace": "^2.3.0",
2015-12-09 18:32:02 +01:00
"watchify": "^3.7.0",
2016-01-28 09:45:40 +01:00
"xo-lib": "^0.8.0-1"
2013-11-12 18:09:54 +01:00
},
"scripts": {
2016-03-10 16:30:09 +01:00
"build": "NODE_ENV=production gulp build",
2015-12-03 18:22:13 +01:00
"dev": "gulp build server",
"dev-test": "mocha --opts .mocha.opts --watch --reporter=min \"dist/**/*.spec.js\"",
2015-06-03 09:40:29 +02:00
"lint": "standard",
2015-12-03 18:22:13 +01:00
"depcheck": "dependency-check ./package.json",
"posttest": "npm run lint && npm run depcheck",
"prepublish": "npm run build",
2016-03-09 14:29:27 +01:00
"test": "true || nyc mocha --opts .mocha.opts \"dist/**/*.spec.js\""
2014-05-29 16:06:23 +01:00
},
2015-12-09 18:32:02 +01:00
"browser": {
"node_modules/ws/index.js": "./ws.js"
},
2015-01-27 13:08:04 +01:00
"browserify": {
"transform": [
2015-02-19 13:03:51 +01:00
"babelify",
2015-12-03 18:22:13 +01:00
"browserify-plain-jade"
2015-01-27 13:08:04 +01:00
]
2015-05-06 16:03:26 +02:00
},
2016-03-09 14:28:18 +01:00
"babel": {
"comments": false,
"compact": true,
"plugins": [
2016-03-10 16:30:09 +01:00
"transform-decorators-legacy",
2016-03-18 12:14:06 +01:00
"transform-runtime"
2016-03-09 14:28:18 +01:00
],
"presets": [
"es2015",
2016-03-10 16:30:09 +01:00
"react",
"stage-0"
2016-03-09 14:28:18 +01:00
]
},
2015-05-18 16:13:36 +02:00
"standard": {
"ignore": [
"dist"
2015-06-03 09:40:29 +02:00
],
"parser": "babel-eslint"
2016-03-24 10:06:51 +01:00
},
"dependencies": {
"react-tabs": "^0.5.3"
2014-11-13 14:31:03 +01:00
}
2013-10-31 11:59:24 +01:00
}