@descoto/react-card-flip
Version:
89 lines (88 loc) • 2.55 kB
JSON
{
"name": "@descoto/react-card-flip",
"version": "1.1.5",
"description": "ReactCardFlip",
"main": "./lib/ReactCardFlip.js",
"types": "./lib/ReactCardFlip.d.ts",
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc",
"build-example": "webpack --env production --config example/webpack.config.js",
"build-e2e": "webpack --env production --config e2e/webpack.e2e.js",
"postbuild": "cp types/index.d.ts lib/ReactCardFlip.d.ts",
"start": "npm run build-example && webpack-dev-server --progress --colors --config example/webpack.config.js",
"test": "npm run build-e2e && jest",
"test:coverage": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:watch": "npm run build-e2e && jest --watch",
"lint": "tslint -p . --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/AaronCCWong/react-card-flip.git"
},
"keywords": [
"react",
"react-component",
"react-card-flip"
],
"author": "Aaron Wong",
"license": "MIT",
"bugs": {
"url": "https://github.com/AaronCCWong/react-card-flip/issues"
},
"homepage": "https://github.com/AaronCCWong/react-card-flip",
"files": [
"lib/*"
],
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-function-bind": "^7.10.5",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^24.9.1",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"coveralls": "^3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"file-loader": "^4.3.0",
"jest": "^26.1.0",
"puppeteer": "^1.11.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-jest": "^26.1.3",
"tslint": "^5.20.1",
"typescript": "^3.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"yargs": "^14.2.3"
},
"jest": {
"preset": "ts-jest",
"transform": {
"^.+\\.tsx?$": "<rootDir>/tools/jest/jest.preprocess.js"
},
"testPathIgnorePatterns": [
"node_modules"
],
"verbose": true,
"testURL": "http://localhost/",
"setupFiles": [
"./tools/jest/jest.setup"
],
"collectCoverageFrom": [
"src/*.tsx"
]
}
}