UNPKG

2.69 kBJSONView Raw
1{
2 "name": "react-native-calendars",
3 "version": "1.415.0",
4 "main": "src/index.js",
5 "description": "React Native Calendar Components",
6 "scripts": {
7 "build": "xcodebuild -project ios/CalendarsExample.xcodeproj build",
8 "e2e": "node ./scripts/test-e2e.js --release",
9 "test": "jasmine src/*.spec.js && npm run lint && npm run e2e",
10 "lint": "eslint src/ example/src",
11 "release": "node ./scripts/release.js",
12 "start": "react-native start",
13 "ios": "react-native run-ios",
14 "android": "react-native run-android",
15 "xcode": "open ios/CalendarsExample.xcworkspace/",
16 "clean": "rm package-lock.json && rm -rf ./node_modules && npm i",
17 "pod-install": "pod install --project-directory=ios"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/wix/react-native-calendars"
22 },
23 "publishConfig": {
24 "registry": "https://registry.npmjs.org/"
25 },
26 "author": "Wix.com",
27 "license": "MIT",
28 "dependencies": {
29 "lodash": "^4.17.15",
30 "moment": "^2.24.0",
31 "hoist-non-react-statics": "^3.3.1",
32 "react-native-swipe-gestures": "^1.0.5",
33 "prop-types": "^15.5.10",
34 "xdate": "^0.8.0",
35 "immutable": "^4.0.0-rc.12"
36 },
37 "devDependencies": {
38 "babel-eslint": "^7.2.3",
39 "detox": "^16.7.2",
40 "eslint": "^6.5.1",
41 "eslint-config-prettier": "^6.11.0",
42 "eslint-plugin-react": "^7.0.0",
43 "husky": "^4.2.5",
44 "jasmine": "^2.5.2",
45 "lint-staged": "^10.2.11",
46 "mocha": "^7.1.0",
47 "prettier": "^2.0.5",
48 "react": "16.11.0",
49 "react-native": "0.62.2",
50 "react-native-navigation": "^6.7.1",
51 "semver": "5.x.x",
52 "shell-utils": "1.x.x"
53 },
54 "detox": {
55 "configurations": {
56 "ios.sim.debug": {
57 "binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/CalendarsExample.app",
58 "build": "xcodebuild -workspace ios/CalendarsExample.xcworkspace -scheme CalendarsExample -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
59 "type": "ios.simulator",
60 "device": {
61 "type": "iPhone 11"
62 }
63 },
64 "ios.sim.release": {
65 "binaryPath": "ios/build/Build/Products/Release-iphonesimulator/CalendarsExample.app",
66 "build": "xcodebuild -workspace ios/CalendarsExample.xcworkspace -scheme CalendarsExample -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
67 "type": "ios.simulator",
68 "device": {
69 "type": "iPhone 11"
70 }
71 }
72 },
73 "test-runner": "mocha"
74 },
75 "husky": {
76 "hooks": {
77 "pre-commit": "lint-staged"
78 }
79 },
80 "lint-staged": {
81 "*.js": "eslint --cache --fix",
82 "*.{js,css,md}": "prettier --write"
83 }
84}