ag-grid-react
Version:
ag-Grid React Component
132 lines • 3.45 kB
JSON
{
"name": "ag-grid-react",
"version": "23.0.0",
"description": "ag-Grid React Component",
"main": "main.js",
"typings": "./main.d.ts",
"scripts": {
"build": "gulp",
"umd": "rollup -c",
"test:e2e": "gulp link-umd-e2e && npm run cypress",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"cypress:open": "cypress open",
"cypress": "cypress run --spec 'cypress/integration/**/*spec.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/ag-grid/ag-grid.git"
},
"keywords": [
"react-component",
"grid",
"data",
"table",
"react"
],
"author": "Niall Crosby <niall.crosby@ag-grid.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ag-grid/ag-grid/issues"
},
"homepage": "https://www.ag-grid.com/react-grid/",
"dependencies": {
"prop-types": "^15.6.2"
},
"devDependencies": {
"@types/jest": "24.0.18",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"ag-grid-community": "~23.0.0",
"babel-preset-react-app": "^9.0.1",
"cypress": "3.0.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-header": "^2.0.0",
"gulp-merge": "^0.1.1",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-typescript": "^5.0.0",
"jest": "24.8.0",
"jest-environment-jsdom-fourteen": "0.1.0",
"jest-watch-typeahead": "0.3.1",
"lnk": "^1.1.0",
"merge-stream": "^2.0.0",
"react": "^16.9.0",
"react-app-polyfill": "^1.0.2",
"react-dom": "^16.9.0",
"rollup": "~0.67.3",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-typescript": "^1.0.0",
"rollup-plugin-uglify": "^6.0.0",
"rollup-stream": "^1.24.0",
"serialize-javascript": "2.1.0",
"tslib": "^1.10.0",
"typescript": "3.6.3",
"vinyl-source-stream": "^2.0.0"
},
"peerDependencies": {
"ag-grid-community": "~23.0.0",
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts"
],
"setupFiles": [
"react-app-polyfill/jsdom",
"<rootDir>/jest/setupTests.ts"
],
"setupFilesAfterEnv": [],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
"<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"
],
"testEnvironment": "jest-environment-jsdom-fourteen",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest",
"^(?!.*\\.(js|jsx|ts|tsx|css|json)$)": "<rootDir>/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"modulePaths": [],
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"web.js",
"js",
"web.ts",
"ts",
"web.tsx",
"tsx",
"json",
"web.jsx",
"jsx",
"node"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"babel": {
"presets": [
"react-app"
]
},
"publishConfig": {
"access": "public"
}
}