2016-09-07 05:39:43 +02:00
|
|
|
{
|
|
|
|
"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": {
|
2017-11-06 04:56:59 +01:00
|
|
|
"node": "6.x"
|
2016-09-07 05:39:43 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
2017-08-16 05:37:11 +02:00
|
|
|
"build": "yarn && NODE_ENV=production webpack -p --bail --progress",
|
|
|
|
"watch": "NODE_ENV=development webpack --watch --progress",
|
2016-09-07 05:39:43 +02:00
|
|
|
"lock": "npm-shrinkwrap --dev",
|
2016-09-29 02:39:07 +02:00
|
|
|
"test": "NODE_PATH=\"./client/src\" jest",
|
|
|
|
"coverage": "NODE_PATH=\"./client/src\" jest --coverage",
|
|
|
|
"lint": "eslint client/src & sass-lint -v"
|
2016-09-07 05:39:43 +02:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
},
|
2016-09-29 02:39:07 +02:00
|
|
|
"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"
|
|
|
|
},
|
2016-09-07 05:39:43 +02:00
|
|
|
"devDependencies": {
|
2017-11-06 04:56:59 +01:00
|
|
|
"@silverstripe/webpack-config": "^0.4.0",
|
|
|
|
"babel-jest": "^20.0.3",
|
|
|
|
"jest-cli": "^19.0.2"
|
2016-09-07 05:39:43 +02:00
|
|
|
}
|
|
|
|
}
|