63 lines
1.4 KiB
JSON
63 lines
1.4 KiB
JSON
{
|
|
"name": "react-native-draggable-grid",
|
|
"keywords": [
|
|
"drag",
|
|
"sortable",
|
|
"grid"
|
|
],
|
|
"version": "2.2.1",
|
|
"description": "A draggable grid for react native",
|
|
"main": "built/src/index.js",
|
|
"types": "src/index.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/SHISME/react-native-draggable-grid"
|
|
},
|
|
"scripts": {
|
|
"built": "rm -rf built && tsc",
|
|
"watch": "tsc -w --outDir demo/built",
|
|
"test": "jest"
|
|
},
|
|
"jest": {
|
|
"verbose": true,
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js"
|
|
],
|
|
"testPathIgnorePatterns": [
|
|
"<rootDir>/node_modules/"
|
|
],
|
|
"transform": {
|
|
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
|
|
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
|
|
},
|
|
"testMatch": [
|
|
"<rootDir>/test/**/?(*.)(spec|test).ts?(x)"
|
|
]
|
|
},
|
|
"pre-commit": [
|
|
"test"
|
|
],
|
|
"author": "shisme",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/jest": "^24.0.18",
|
|
"@types/react": "^16.0.0",
|
|
"@types/react-native": "*",
|
|
"babel-jest": "^24.9.0",
|
|
"jest": "^24.9.0",
|
|
"jest-react-native": "^18.0.0",
|
|
"pre-commit": "^1.2.2",
|
|
"react": "^16.0.0",
|
|
"react-native": "*",
|
|
"ts-jest": "^24.0.2",
|
|
"prettier": "^1.18.2",
|
|
"typescript": "^3.8.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16 || ^17 || ^18",
|
|
"react-native": "*"
|
|
}
|
|
}
|