forked from maggialejandro/react-native-calendario
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
{
"name": "react-native-calendario",
"version": "0.2.10",
"description": "React Native Calendar",
"main": "dist/index.js",
"scripts": {
"lint": "eslint lib/**/*.js",
"clean": "rimraf dist/",
"build": "npm run build-lib && npm run build-flow",
"build-flow": "flow-copy-source lib dist",
"build-lib": "BABEL_ENV=publish babel lib -d dist --copy-files",
"prepublish": "npm run clean && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maggialejandro/react-native-calendario.git"
},
"keywords": [
"react-native",
"calendar"
],
"author": "Alejandro Maggi",
"license": "MIT",
"bugs": {
"url": "https://github.com/maggialejandro/react-native-calendario/issues"
},
"homepage": "https://github.com/maggialejandro/react-native-calendario#readme",
"dependencies": {
"moment": "^2.24.0"
},
"peerDependencies": {
"react": "16.8.3",
"react-native": "^0.59.9"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-react-native": "^5.0.2",
"babel-preset-react-native-syntax": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-flowtype": "^3.11.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-native": "^3.7.0",
"flow-bin": "^0.102.0",
"flow-copy-source": "^2.0.7",
"prettier": "^1.18.2",
"rimraf": "^2.6.3"
}
}