-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "react-datetime-range-picker",
"description": "Resusable date time range picker",
"version": "1.0.4",
"author": "Samuel Amoah <[email protected]>",
"keywords": [
"react",
"date",
"datetime",
"range",
"datetime-rangepicker",
"moment"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.20.0",
"babel-tape-runner": "^2.0.1",
"enzyme": "^2.9.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"tape": "^4.6.3"
},
"dependencies": {
"react": "^15.6.1",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"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"
}