-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "react-datetime-range-picker",
"description": "Reusable date time range picker",
"version": "3.0.0",
"license": "MIT",
"author": "Samuel Amoah <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/snamoah/react-datetime-range-picker.git"
},
"keywords": [
"react",
"date",
"datetime",
"range",
"datetime-rangepicker",
"moment"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"babel-tape-runner": "^2.0.1",
"enzyme": "^2.9.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^16.13.1",
"tape": "^4.6.3"
},
"dependencies": {
"moment": "^2.19.3",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^16.3.0",
"react-datetime": "^2.8.10"
},
"scripts": {
"prepublish": "npm run compile",
"test": "npm run compile && babel-tape-runner test/*.js",
"compile": "npm run lint && babel lib --out-dir dist --copy-files",
"lint": "eslint lib"
},
"main": "dist/index.js"
}