nativescript-carousel
Version:
Carousel component for NativeScript (iOS & Android).
114 lines (113 loc) • 4.11 kB
JSON
{
"name": "nativescript-carousel",
"description": "Carousel component for NativeScript (iOS & Android).",
"main": "carousel",
"version": "7.0.1",
"typings": "carousel.d.ts",
"nativescript": {
"platforms": {
"ios": "7.0.0",
"android": "7.0.0"
},
"plugin": {
"nan": "true",
"core3": "true",
"pan": "true",
"vue": "true",
"webpack": "true",
"wrapper": "",
"category": "Interface"
}
},
"scripts": {
"tsc": "tsc -skipLibCheck --outDir dist",
"tsc.dist": "npm run dist.clean && tsc -skipLibCheck --outDir dist && npm run dist.copy",
"dist.copy": "cp -R platforms dist && cp ../README.md dist && cp carousel.d.ts dist && cp package.json dist",
"dist.clean": "rimraf dist",
"build": "npm i && ts-patch install && npm run tsc.dist",
"clean": "rimraf node_modules package-losk.json dist && npm run demo.clean && npm run demo-ng.clean && npm run demo-vue.clean",
"demo.clean": "cd ../demo && ns clean",
"demo-ng.clean": "cd ../demo-ng && ns clean",
"demo-vue.clean": "cd ../demo-vue && ns clean",
"demo.ios": "cd ../demo && tns run ios",
"demo.android": "cd ../demo && tns run android",
"demo-ng.ios": "cd ../demo-ng && tns run ios",
"demo-ng.android": "cd ../demo-ng && tns run android",
"demo-vue.ios": "cd ../demo-vue && tns run ios",
"demo-vue.android": "cd ../demo-vue && tns run android",
"demo.ios.build": "cd ../demo && tns build ios",
"test": "npm run tslint && npm run tslint.demo && cd ../demo && tns build ios && tns build android",
"setup": "npm run build && cd ../demo && npm i && cd ../demo-ng && npm i && cd ../demo-vue && npm i",
"tslint": "tslint --config '../tslint.json' '*.ts' --exclude '**/node_modules/**' --exclude '**/typings/**'",
"tslint.demo": "tslint --config '../tslint.json' '../demo/app/*.ts' --exclude '**/node_modules/**' --exclude '**/typings/**'",
"ci.tslint": "npm i && tslint '**/*.ts' --config '../tslint.json' --exclude '**/node_modules/**' --exclude '**/typings/**'",
"development.setup": "npm run setup && cd ../demo && cd ../src",
"generate.typings.ios": "cd ../demo && TNS_DEBUG_METADATA_PATH=\"$(pwd)/metadata\" tns build ios && TNS_TYPESCRIPT_DECLARATIONS_PATH=\"$(pwd)/typings\" tns build ios && echo 'Now look for your library typings in demo/typings!'",
"make-changelog": "cd ../ && github_changelog_generator -u manijak -p nativescript-carousel"
},
"repository": {
"type": "git",
"url": "https://github.com/manijak/nativescript-carousel.git"
},
"keywords": [
"NativeScript",
"Carousel",
"Slider",
"Pager",
"ViewPager",
"DKCarouselView",
"iOS",
"Android",
"manijak"
],
"author": {
"name": "Nedim Erkocevic",
"email": "nedim@fkzeljo.com",
"url": "https://github.com/manijak"
},
"contributors": [
{
"name": "Brad Martin",
"email": "bradwaynemartin@gmail.com",
"url": "https://github.com/bradmartin"
},
{
"name": "Nathan Walker",
"url": "https://github.com/NathanWalker"
},
{
"name": "Pedro Marins",
"email": "ph.marins@hotmail.com",
"url": "https://github.com/rickwalking"
}
],
"bugs": "https://github.com/manijak/nativescript-carousel/issues",
"license": "MIT",
"homepage": "https://github.com/manijak/nativescript-carousel",
"devDependencies": {
"husky": "^4.3.0",
"lint-staged": "~10.3.0",
"prettier": "^2.1.1",
"@nativescript/core": "~7.0.3",
"@nativescript/types": "^7.0.3",
"@nativescript/webpack": "^3.0.4",
"typescript": "~3.9.0",
"ts-patch": "^1.3.0",
"prompt": "^1.0.0",
"rimraf": "^2.6.3",
"tslint": "^6.1.3",
"ts-node": "^9.0.0",
"semver": "^6.2.0"
},
"lint-staged": {
"**/*.{js, css, ts, json, scss, html, xml, md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}