-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.39 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.39 KB
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
{
"name": "melon-timepicker",
"version": "1.2.1",
"description": "react timepicker component",
"main": "lib/index.js",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-istanbul": "^2.0.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.24.1",
"coveralls": "^2.11.9",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"cross-env": "^3.1.4",
"css-loader": "^0.24.0",
"esdoc": "^0.4.8",
"esdoc-es7-plugin": "0.0.3",
"file-loader": "^0.9.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-sourcemaps": "^1.6.0",
"jasmine-core": "^2.8.0",
"json-loader": "^0.5.4",
"karma": "^1.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.0.4",
"karma-sauce-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"lodash": "^4.15.0",
"nib": "^1.1.0",
"style-loader": "^0.13.1",
"stylus": "^0.54.2",
"stylus-loader": "^2.3.1",
"watchify": "^3.7.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0"
},
"scripts": {
"test": "cross-env NODE_ENV=test ./node_modules/.bin/karma start ./tools/karma.conf.js",
"test-ci": "cross-env NODE_ENV=test ./node_modules/.bin/karma start ./tools/karma.ci.conf.js",
"coveralls": "cat ./coverage/lcov/lcov.info | ./node_modules/.bin/coveralls",
"start": "cross-env NODE_ENV=dev node tools/server.js",
"build": "cross-env NODE_ENV=production gulp build",
"rebuild": "cross-env NODE_ENV=production gulp clean build",
"docs": "esdoc -c esdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-melon/melon-timepicker.git"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"keywords": [
"react",
"ui",
"components"
],
"author": "cxtom2008@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/react-melon/melon-timepicker/issues"
},
"homepage": "https://github.com/react-melon/melon-timepicker#readme",
"dependencies": {
"lodash": "^4.17.2",
"melon": ">=0.6.0-0",
"melon-core": ">=0.5.2",
"moment": "^2.13.0",
"prop-types": "^15.6.0"
}
}