12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {
- "name": "wagtail",
- "version": "1.0.0",
- "repository": "https://github.com/wagtail/wagtail",
- "private": true,
- "engines": {
- "node": ">= 4"
- },
- "browser": {},
- "browserify": {
- "transform": [
- "browserify-shim"
- ]
- },
- "browserify-shim": {},
- "devDependencies": {
- "babel-cli": "^6.5.1",
- "babel-core": "^6.5.2",
- "babel-loader": "^6.2.3",
- "babel-preset-es2015": "^6.5.0",
- "babel-preset-react": "^6.5.0",
- "chai": "^3.5.0",
- "enzyme": "^2.3.0",
- "eslint": "^2.9.0",
- "eslint-config-wagtail": "^0.1.0",
- "eslint-plugin-import": "^1.8.1",
- "eslint-plugin-jsx-a11y": "^1.5.3",
- "eslint-plugin-react": "^4.3.0",
- "glob": "^7.0.0",
- "gulp": "~3.8.11",
- "gulp-autoprefixer": "~3.0.2",
- "gulp-rename": "^1.2.2",
- "gulp-sass": "~2.3.1",
- "gulp-sourcemaps": "~1.5.2",
- "gulp-util": "~2.2.14",
- "isparta": "^4.0.0",
- "lodash": "^4.5.1",
- "mocha": "^2.4.5",
- "mustache": "^2.2.1",
- "react-addons-test-utils": "^0.14.8",
- "redux-devtools": "^3.1.1",
- "require-dir": "^0.3.0",
- "sinon": "^1.17.3"
- },
- "dependencies": {
- "babel-polyfill": "^6.5.0",
- "exports-loader": "^0.6.3",
- "imports-loader": "^0.6.5",
- "moment": "^2.11.2",
- "react": "^0.14.7",
- "react-accessible-modal": "0.0.5",
- "react-addons-css-transition-group": "^0.14.7",
- "react-dom": "^0.14.7",
- "react-onclickoutside": "^4.5.0",
- "react-redux": "^4.4.0",
- "redux": "^3.3.1",
- "redux-actions": "^0.10.0",
- "redux-logger": "^2.6.0",
- "redux-thunk": "^1.0.3",
- "webpack": "^1.12.14",
- "whatwg-fetch": "^0.11.0"
- },
- "scripts": {
- "postinstall": "cd ./client; npm install; cd ..",
- "build": "gulp build; webpack --progress --colors --config ./client/webpack/prod.config.js",
- "watch": "webpack --progress --colors --config ./client/webpack/dev.config.js & gulp watch",
- "start": "npm run watch",
- "lint:js": "eslint --max-warnings 16 ./client",
- "lint": "npm run lint:js",
- "test": "npm run test:unit",
- "test:unit": "env NODE_PATH=$NODE_PATH:$PWD/client/src mocha --compilers js:babel-core/register client/tests/**/*.test.js",
- "test:unit:watch": "env NODE_PATH=$NODE_PATH:$PWD/client/src mocha --watch --compilers js:babel-core/register client/tests/**/*.test.js",
- "test:unit:coverage": "env NODE_PATH=$NODE_PATH:$PWD/client/src babel-node $(npm bin)/isparta cover node_modules/mocha/bin/_mocha -- client/tests/**/*.test.js",
- "component": "node ./client/src/cli/index.js component --dir ./client/src/components/"
- }
- }
|