-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.42 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
54
55
56
57
{
"name": "react-light-calendar",
"version": "1.0.3",
"description": "A simple, yet customizable React component for rendering date pickers",
"main": "build/index.js",
"scripts": {
"test": "jest",
"prebuild": "rimraf build/",
"build": "webpack",
"lint": "standard",
"start": "webpack-dev-server --inline --progress --config webpack.config.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forMetris/react-light-calendar.git"
},
"keywords": [
"react",
"component",
"date",
"picker",
"calendar",
"moment"
],
"author": "antoinechalifour <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/forMetris/react-light-calendar/issues"
},
"homepage": "https://github.com/forMetris/react-light-calendar#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"enzyme": "^2.7.1",
"jest": "^18.1.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2",
"rimraf": "^2.5.4",
"standard": "^8.6.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.3"
},
"dependencies": {
"moment": "^2.17.1",
"react": "^15.4.2"
},
"standard": {
"ignore": [
"/__tests__/",
"/build/"
]
}
}