forked from haoxins/react-flatpickr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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-flatpickr",
"version": "3.6.3",
"description": "flatpickr for React",
"main": "build/index.js",
"scripts": {
"example": "npm run build && webpack --config example/webpack.js",
"dev": "echo 'Please open the example directory to view the example' && webpack-dev-server --config example/webpack.js",
"lint": "eslint lib && eslint example",
"build": "babel lib --out-dir build",
"prepublishOnly": "npm run build",
"test": "echo todo"
},
"repository": "coderhaoxin/react-flatpickr",
"keywords": [
"flatpickr",
"react"
],
"files": [
"build/",
"lib/"
],
"author": "haoxin",
"license": "MIT",
"dependencies": {
"flatpickr": "^4.0.5",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.28.7",
"eslint": "^4.8.0",
"eslint-config-ok": "github:haoxins/eslint-config",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"style-loader": "^0.19.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
},
"eslintConfig": {
"extends": [
"ok"
]
}
}