forked from wangzuo/input-moment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.94 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
{
"name": "input-moment",
"version": "0.4.0",
"description": "React datetime picker powered by momentjs",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server -c --port=8080",
"build-js": "rm -rf lib && babel src --out-dir lib && webpack -p",
"build-css": "lessc --clean-css src/less/input-moment.less dist/input-moment.css",
"build": "npm run build-js && npm run build-css",
"deploy": "rm -rf .publish && npm run build && github-pages-deploy",
"pretest": "npm run build",
"test": "jest",
"prepublish": "npm test",
"clean": "rm dist/* && rm example/bundle*"
},
"github-pages-deploy": {
"src": "example"
},
"author": "Wang Zuo",
"license": "ISC",
"peerDependencies": {
"moment": "^2.10.6",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.1.2",
"babel-jest": "^19.0.0",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.1.2",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.21.0",
"github-pages-deploy": "0.0.3",
"jest": "^19.0.2",
"json-loader": "^0.5.4",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"less-plugin-clean-css": "^1.5.1",
"moment": "^2.17.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.3",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"classnames": "^2.2.0",
"lodash": "^4.17.4",
"react-input-slider": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wangzuo/input-moment.git"
},
"keywords": [
"react",
"react-component",
"input",
"datetime",
"picker",
"moment"
],
"bugs": {
"url": "https://github.com/wangzuo/input-moment/issues"
},
"homepage": "https://github.com/wangzuo/input-moment#readme"
}