silverstripe-frameworktest/package.json

75 lines
2.2 KiB
JSON

{
"name": "silverstripe-asset-admin",
"version": "0.0.0",
"description": "Asset management for the SilverStripe CMS",
"main": "./client/src/boot/index.js",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/open-sausages/silverstripe-asset-admin.git"
},
"homepage": "https://github.com/open-sausages/silverstripe-asset-admin",
"bugs": {
"url": "https://github.com/open-sausages/silverstripe-asset-admin/issues"
},
"author": "SilverStripe Ltd",
"engines": {
"node": "4.x"
},
"scripts": {
"build": "yarn && NODE_ENV=production webpack -p --bail --progress",
"watch": "NODE_ENV=development webpack --watch --progress",
"lock": "npm-shrinkwrap --dev",
"test": "NODE_PATH=\"./client/src\" jest",
"coverage": "NODE_PATH=\"./client/src\" jest --coverage",
"lint": "eslint client/src & sass-lint -v"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testDirectoryName": "tests",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
],
"mocksPattern": "mocks",
"testPathDirs": [
"client/src"
],
"bail": true,
"testRunner": "<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2.js"
},
"dependencies": {
"react": "^15.3.1",
"react-addons-css-transition-group": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.1",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.5",
"redux": "https://registry.npmjs.org/redux/-/redux-3.0.5.tgz",
"redux-thunk": "^2.1.0",
"tether": "^1.3.2",
"url": "^0.11.0"
},
"devDependencies": {
"@silverstripe/webpack-config": "^0.2.8",
"babel-core": "^6.7.4",
"babel-jest": "^9.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^2.5.3",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3",
"jest-cli": "^19.0.2",
"react-addons-test-utils": "15.3.1",
"redux-mock-store": "0.0.6",
"redux-logger": "^2.6.1",
"semver": "^5.1.0"
},
"babel": {
"presets": [
"react",
"es2015"
]
}
}