2018-07-11 07:47:38 +02:00
|
|
|
{
|
|
|
|
"name": "silverstripe-tagfield",
|
|
|
|
"version": "2.2.0",
|
|
|
|
"description": "Tag field for SilverStripe",
|
2018-07-17 06:50:49 +02:00
|
|
|
"main": "./client/src/boot/index.js",
|
2018-07-11 07:47:38 +02:00
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/silverstripe/silverstripe-tagfield.git"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/silverstripe/silverstripe-tagfield",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/silverstripe/silverstripe-tagfield/issues"
|
|
|
|
},
|
|
|
|
"author": "SilverStripe Ltd.",
|
|
|
|
"engines": {
|
|
|
|
"node": ">=6.x"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2018-12-04 03:50:25 +01:00
|
|
|
"build": "yarn && yarn lint && yarn test && NODE_ENV=production webpack -p --bail --progress",
|
2018-07-11 07:47:38 +02:00
|
|
|
"dev": "NODE_ENV=development webpack --progress",
|
|
|
|
"watch": "NODE_ENV=development webpack --watch --progress",
|
|
|
|
"css": "WEBPACK_CHILD=css npm run build",
|
2018-07-17 06:19:44 +02:00
|
|
|
"test": "jest",
|
|
|
|
"coverage": "jest --coverage",
|
2018-07-11 07:47:38 +02:00
|
|
|
"lock": "npm-shrinkwrap --dev",
|
|
|
|
"lint": "eslint client/src && sass-lint client/src",
|
|
|
|
"lint-js": "eslint client/src",
|
|
|
|
"lint-js-fix": "eslint client/src --fix",
|
|
|
|
"lint-sass": "sass-lint client/src"
|
|
|
|
},
|
2018-07-17 06:19:44 +02:00
|
|
|
"jest": {
|
|
|
|
"roots": [
|
|
|
|
"client/src"
|
|
|
|
],
|
|
|
|
"modulePaths": [
|
|
|
|
"client/src",
|
|
|
|
"../admin/client/src",
|
|
|
|
"../admin/node_modules",
|
|
|
|
"vendor/silverstripe/admin/client/src",
|
|
|
|
"vendor/silverstripe/admin/node_modules"
|
|
|
|
],
|
|
|
|
"testMatch": [
|
|
|
|
"**/tests/**/*-test.js?(x)"
|
|
|
|
],
|
|
|
|
"transform": {
|
|
|
|
".*": "babel-jest"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"babel": {
|
|
|
|
"presets": [
|
|
|
|
"env",
|
|
|
|
"react"
|
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"transform-object-rest-spread"
|
|
|
|
]
|
|
|
|
},
|
2018-07-11 07:47:38 +02:00
|
|
|
"devDependencies": {
|
2019-07-18 23:41:54 +02:00
|
|
|
"@silverstripe/eslint-config": "^0.0.5",
|
2018-07-11 07:47:38 +02:00
|
|
|
"@silverstripe/webpack-config": "^0.8.0",
|
2019-07-18 23:41:54 +02:00
|
|
|
"@storybook/react": "^3.2.19",
|
2018-07-17 06:19:44 +02:00
|
|
|
"babel-jest": "^20.0.3",
|
|
|
|
"copy-webpack-plugin": "^4.2.0",
|
|
|
|
"enzyme": "^3.3.0",
|
|
|
|
"enzyme-adapter-react-15.4": "^1.0.5",
|
|
|
|
"html-loader": "^0.5.1",
|
|
|
|
"jest-cli": "^19.0.2",
|
2019-02-12 12:46:48 +01:00
|
|
|
"react-addons-test-utils": "15.3.1",
|
2018-07-17 06:19:44 +02:00
|
|
|
"webpack": "^2"
|
2018-07-11 07:47:38 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"babel-polyfill": "6.7.4",
|
|
|
|
"classnames": "^2.2.5",
|
2019-01-24 03:16:38 +01:00
|
|
|
"debounce-promise": "^3.1.0",
|
2018-07-11 07:47:38 +02:00
|
|
|
"isomorphic-fetch": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
|
|
|
|
"jquery": "^3.1.1",
|
2019-02-15 02:57:58 +01:00
|
|
|
"prop-types": "^15.7.2",
|
2018-07-11 07:47:38 +02:00
|
|
|
"react": "15.3.1",
|
|
|
|
"react-dom": "15.3.1",
|
|
|
|
"react-select": "^1.0.0-rc.5",
|
|
|
|
"url": "^0.11.0"
|
|
|
|
}
|
|
|
|
}
|