forked from quri/react-bootstrap-datetimepicker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.19 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
{
"name": "@testlio/react-bootstrap-datetimepicker",
"version": "0.4.0",
"description": "A bootstrap datetime picker component for React.js",
"homepage": "http://dev.quri.com/react-bootstrap-datetimepicker/",
"repository": {
"type": "git",
"url": "http://github.com/quri/react-bootstrap-datetimepicker"
},
"main": "./dist/react-bootstrap-datetimepicker.js",
"scripts": {
"build": "rm -rf ./dist && NODE_ENV=production webpack",
"dev": "webpack-dev-server --config ./webpack.dev.config.js",
"test": "jest",
"lint": "eslint ."
},
"keywords": [
"react",
"react-component",
"bootstrap",
"datetimepicker",
"datetime"
],
"author": "Loïc CHOLLIER <[email protected]>",
"license": "MIT",
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"core-js/.*",
"<rootDir>/node_modules/react",
"babel",
"<rootDir>/node_modules/babel"
],
"setupEnvScriptFile": "<rootDir>/jestEnvironment.js",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"testPathDirs": [
"src/"
]
},
"devDependencies": {
"babel": "^6.3.26",
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0-beta6",
"babel-jest": "^6.0.1",
"babel-loader": "^6.2.0",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-plugin-jasmine": "^1.6.0",
"eslint-plugin-react": "^3.13.1",
"extract-text-webpack-plugin": "^0.9.1",
"html-webpack-plugin": "^1.7.0",
"jest-cli": "^0.8.2",
"jsx-loader": "^0.13.2",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"classnames": "^2.2.1",
"lodash": "^3.10.1",
"moment": "^2.10.6",
"object-assign": "^4.0.1",
"react": "^15.0.1",
"react-bootstrap": "^0.29.4",
"react-css-modules": "^3.6.3",
"react-dom": "^15.0.1"
}
}