Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ jobs:
steps:
- checkout
- run: yarn install
- run: yarn add [email protected]
- run: yarn add [email protected]
- run: yarn add codecov
- run: yarn tslint
- run: yarn type-check
- run: yarn test
185 changes: 94 additions & 91 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,96 +1,99 @@
{
"name": "react-native-nested-listview",
"version": "0.7.2",
"description": "Nested Listview for React native",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest && codecov",
"tslint": "tslint -p .",
"type-check": "tsc --noEmit",
"prepublishOnly": "tsc -p ./ --outDir dist/",
"add-react": "yarn add [email protected] && yarn add [email protected]",
"remove-react": "yarn remove react && yarn remove react-native",
"prettier-check": "prettier --check 'src/**/*.{ts, tsx}'",
"prettier-format": "prettier --write 'src/**/*.{ts, tsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fjmorant/react-native-nested-listview.git"
},
"dependencies": {
"react-fast-compare": "2.0.4",
"shortid": "2.2.14"
},
"peerDependencies": {
"react": "16.9.0",
"react-native": "~0.60.5"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/runtime": "7.5.5",
"@types/jest": "24.0.17",
"@types/react": "16.9.2",
"@types/react-native": "0.60.8",
"@types/react-test-renderer": "16.9.0",
"@types/shortid": "0.0.29",
"babel-jest": "24.9.0",
"flow-bin": "0.105.2",
"istanbul": "0.4.5",
"istanbul-api": "2.1.6",
"istanbul-reports": "2.2.6",
"jest": "24.9.0",
"metro-react-native-babel-preset": "0.56.0",
"prettier": "1.18.2",
"prettier-eslint": "9.0.0",
"react-test-renderer": "16.9.0",
"ts-jest": "24.0.2",
"tslint": "5.19.0",
"typescript": "3.5.3"
},
"keywords": [
"react",
"native",
"list",
"nested"
"name": "react-native-nested-listview",
"version": "0.7.2",
"description": "Nested Listview for React native",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest && codecov",
"tslint": "tslint -p .",
"type-check": "tsc --noEmit",
"prepublishOnly": "tsc -p ./ --outDir dist/",
"add-react": "yarn add [email protected] && yarn add [email protected]",
"remove-react": "yarn remove react && yarn remove react-native",
"prettier-check": "prettier --check 'src/**/*.{ts, tsx}'",
"prettier-format": "prettier --write 'src/**/*.{ts, tsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fjmorant/react-native-nested-listview.git"
},
"dependencies": {
"react-fast-compare": "2.0.4",
"shortid": "2.2.14"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/runtime": "7.5.5",
"@types/jest": "24.0.17",
"@types/react": "16.9.2",
"@types/react-native": "0.60.8",
"@types/react-test-renderer": "16.9.0",
"@types/shortid": "0.0.29",
"babel-jest": "24.9.0",
"codecov": "3.5.0",
"flow-bin": "0.105.2",
"istanbul": "0.4.5",
"istanbul-api": "2.1.6",
"istanbul-reports": "2.2.6",
"jest": "24.9.0",
"metro-react-native-babel-preset": "0.56.0",
"prettier": "1.18.2",
"prettier-eslint": "9.0.0",
"react": "16.9.0",
"react-native": "0.60.5",
"react-test-renderer": "16.9.0",
"ts-jest": "24.0.2",
"tslint": "5.19.0",
"typescript": "3.5.3"
},
"keywords": [
"react",
"native",
"list",
"nested"
],
"author": "Javier Morant",
"license": "MIT",
"bugs": {
"url": "https://github.com/fjmorant/react-native-nested-listview/issues"
},
"homepage": "https://github.com/fjmorant/react-native-nested-listview#readme",
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"author": "Javier Morant",
"license": "MIT",
"bugs": {
"url": "https://github.com/fjmorant/react-native-nested-listview/issues"
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"homepage": "https://github.com/fjmorant/react-native-nested-listview#readme",
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"transformIgnorePatterns": [
"node_modules/(?!(jest-)|react-native|react-navigation|react-clone-referenced-element|mobx-react)"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"modulePathIgnorePatterns": [
"<rootDir>/examples/"
],
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/",
"<rootDir>/examples/",
"<rootDir>/lib/",
"<rootDir>/dist/"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"globals": {
"ts-jest": {
"babelConfig": true
}
}
"transformIgnorePatterns": [
"node_modules/(?!(jest-)|react-native|react-navigation|react-clone-referenced-element|mobx-react)"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"modulePathIgnorePatterns": [
"<rootDir>/examples/"
],
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/",
"<rootDir>/examples/",
"<rootDir>/lib/",
"<rootDir>/dist/"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"globals": {
"ts-jest": {
"babelConfig": true
}
}
}
}
Loading