silverstripe-frameworktest/package.json

58 lines
1.7 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": "6.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.4.0",
"babel-jest": "^20.0.3",
"jest-cli": "^19.0.2"
}
}