forked from cawfree/react-native-simpler-date-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 KB
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
{
"name": "@cawfree/react-native-simpler-date-picker",
"version": "0.1.0-alpha.4",
"keywords": [
"react",
"react-native",
"react-native-web",
"date",
"datepicker",
"picker",
"select",
"dropdown"
],
"scripts": {
"build": "babel src --out-dir dist",
"prettify": "yarn prettier --write \"**/*.js\"",
"test": "jest"
},
"description": "A simple date picker component with a focus on reducing implementation complexity.",
"main": "dist",
"repository": "https://github.com/cawfree/react-native-simpler-date-picker",
"author": "Alex Thomas (@cawfree) <hello@cawfree.com>",
"license": "MIT",
"private": false,
"dependencies": {
"moment": "^2.24.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"husky": "^4.2.5",
"jest": "^25.4.0",
"leasot": "^10.2.0",
"prettier": "^2.0.5"
}
}