forked from DevSzurmanski/react-native-calendars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "react-native-calendars",
"version": "1.22.0",
"main": "src/index.js",
"description": "React Native Calendar Components",
"scripts": {
"build": "xcodebuild -project ios/CalendarsExample.xcodeproj build",
"e2e": "node ./scripts/test-e2e.js",
"test": "jasmine src/*.spec.js && npm run lint",
"lint": "eslint src/ example/src",
"release": "node ./scripts/release.js",
"start": "react-native start",
"ios": "react-native run-ios",
"android": "react-native run-android",
"xcode": "open ios/CalendarsExample.xcworkspace/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix/react-native-calendars"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Wix.com",
"license": "MIT",
"dependencies": {
"hoist-non-react-statics": "^3.3.1",
"lodash": "^4.0.0",
"prop-types": "^15.5.10",
"xdate": "^0.8.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"detox": "^15.5.0",
"eslint": "^6.5.1",
"eslint-plugin-react": "^7.0.0",
"jasmine": "^2.5.2",
"mocha": "^7.1.0",
"react": "16.9.0",
"react-native": "0.61.4",
"react-native-navigation": "^3.5.1",
"semver": "5.x.x",
"shell-utils": "1.x.x"
},
"detox": {
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/CalendarsExample.app",
"build": "xcodebuild -workspace ios/CalendarsExample.xcworkspace -scheme CalendarsExample -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 11"
}
},
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/CalendarsExample.app",
"build": "xcodebuild -workspace ios/CalendarsExample.xcworkspace -scheme CalendarsExample -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 11"
}
}
},
"test-runner": "mocha"
}
}