This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
forked from wangzuo/input-moment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.73 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
{
"name": "st-input-moment",
"version": "1.3.3",
"description": "React datetime picker powered by momentjs",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server -c --port=8888",
"build-js": "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": "npm run build && github-pages-deploy",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm dist/* && rm example/bundle*"
},
"github-pages-deploy": {
"src": "example"
},
"author": "Wang Zuo",
"license": "ISC",
"peerDependencies": {
"react": "^0.14.0 || ^15.3.2",
"react-dom": "^0.14.0 || ^15.3.2",
"moment": "^2.15.2"
},
"devDependencies": {
"@babel/core": "7.2.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"babel-core": "6.18.0",
"babel-loader": "8.0.4",
"css-loader": "^0.21.0",
"github-pages-deploy": "0.0.3",
"json-loader": "^0.5.4",
"less": "3.9.0",
"less-loader": "4.1.0",
"less-plugin-clean-css": "^1.5.1",
"style-loader": "^0.13.0",
"webpack": "4.23.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "3.1.10"
},
"dependencies": {
"blacklist": "^1.1.4",
"classnames": "^2.2.0",
"lodash": "^4.17.11",
"st-react-input-slider": "^1.5.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"
}