-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.68 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
{
"name": "reactui-inputcontrol",
"version": "0.0.1",
"description": "React inputControl",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server -c --port=8081",
"build-js": "babel src --out-dir lib && webpack -p",
"build-css": "lessc --clean-css src/Input.less dist/Input.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": {
"name": "tian yun"
},
"license": "ISC",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-core": "^6.1.2",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"bluebird": "^3.4.6",
"css-loader": "^0.21.0",
"github-pages-deploy": "0.0.3",
"json-loader": "^0.5.4",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"less-plugin-clean-css": "^1.5.1",
"style-loader": "^0.13.0",
"superagent": "^3.3.0",
"superagent-bluebird-promise": "^4.1.0",
"webpack": "^1.12.3",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.16.2",
"webpack-hot-middleware": "^2.12.2"
},
"dependencies": {
"blacklist": "^1.1.4",
"classnames": "^2.2.0",
"lodash": "^3.10.1",
"react-input-slider": "^1.5.0"
},
"repository": {
"type": "git",
"url": "git"
},
"keywords": [
"react",
"react-component",
"react-dialog"
],
"bugs": {
"url": ""
},
"homepage": "https://github.com/TOMG-FE/react-ui"
}