This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
97 lines (97 loc) · 2.99 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "rc-datepicker",
"version": "5.0.17",
"description": "DatePicker and DatePickerInput to be used with React",
"main": "index.js",
"files": [
"src",
"lib",
"examples",
"index.js",
"styles.js",
"index.d.ts"
],
"types": "./index.d.ts",
"scripts": {
"test": "./node_modules/karma/bin/karma start",
"build": "rm -rf lib && mkdir lib && babel src -d lib && webpack --config webpack.config.build.babel.js && rm lib/bundle.js",
"lint": "scriptoni lint src examples/examples.js test",
"lint-fix": "scriptoni lint src examples/examples.js test --fix",
"lint-style": "scriptoni lint-style ./**/*.scss --syntax scss",
"lint-style-fix": "scriptoni stylefmt ./**/*.scss",
"prepublish": "npm run build",
"preversion": "npm run lint && npm run test && npm run build-examples",
"build-examples": "npm run clean && webpack --config examples/webpack.config.build.babel.js --progress",
"start": "webpack-dev-server --config examples/webpack.config.babel.js --progress --hot --inline",
"clean": "rm -rf examples/build",
"generate-readme": "babel-node ./generateReadme.js",
"release-version": "smooth-release"
},
"repository": {
"type": "git",
"url": "https://github.com/buildo/rc-datepicker.git"
},
"keywords": [
"react",
"react-component",
"datepicker",
"calendar",
"date"
],
"author": "Francesco Cioria <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/buildo/rc-datepicker/issues"
},
"homepage": "https://github.com/buildo/rc-datepicker",
"devDependencies": {
"@types/react": "^15.6.28",
"babel-cli": "^6.8.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.4.1",
"babel-preset-buildo": "^0.1.1",
"babel-register": "^6.9.0",
"compression-webpack-plugin": "^0.3.2",
"css-loader": "^0.23.1",
"debug": "^2.6.9",
"eslint-loader": "^1.9.0",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.30.1",
"isparta-loader": "^2.0.0",
"karma": "^0.13.22",
"karma-bamboo-reporter": "^0.1.2",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-webpack": "^1.8.1",
"mocha": "^2.5.3",
"node-libs-browser": "^1.1.1",
"node-sass": "^4.13.1",
"react": "^0.14",
"react-addons-test-utils": "^0.14.8",
"react-dom": "^0.14",
"react-readme-generator": "0.0.1",
"require-dir": "^0.3.2",
"resolve-url-loader": "^1.6.1",
"sass-loader": "^3.2.3",
"scriptoni": "^0.6.16",
"smooth-release": "^8.0.3",
"style-loader": "^0.13.2",
"webpack": "^1.15.0",
"webpack-dev-server": "^1.16.5"
},
"peerDependencies": {
"react": "^0.14 || ^15.0 || ^16.0",
"react-dom": "^0.14 || ^15.0 || ^16.0"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.13.1",
"moment": "^2.13.0",
"react-flexview": "^4.0.4",
"revenge": "^0.4.4",
"tcomb": "^3.2.1",
"tcomb-react": "^0.9.0"
}
}