-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "relect",
"version": "1.2.1",
"description": "A Tiny React Single Select Component.",
"main": "lib/index.js",
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel": "^6.1.18",
"babel-core": "^6.3.21",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.23.0",
"babel-types": "^6.24.1",
"css-loader": "^0.28.4",
"node-sass": "^4.5.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sass-loader": "^6.0.5",
"shelljs": "^0.8.5",
"style-loader": "^0.19.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^3.1.11",
"webpack-merge": "^4.1.0"
},
"scripts": {
"dev": "node_modules/.bin/webpack-dev-server --config ./build/webpack.dev.conf.js",
"build": "webpack -p --hide-modules --config ./build/webpack.prod.conf.js && cp src/relect.css lib",
"release": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chenjiahan/relect.git"
},
"keywords": [
"react",
"select",
"react-select",
"react-component"
],
"author": "neverland",
"license": "ISC",
"bugs": {
"url": "https://github.com/chenjiahan/relect/issues"
},
"homepage": "https://github.com/chenjiahan/relect#readme",
"dependencies": {
"prop-types": "^15.5.10"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
]
}
}