-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 905 Bytes
/
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
{
"name": "dropdownlist",
"version": "0.1.0",
"description": "A simple and light react dropdownlist with autocomplete.",
"main": "./lib/index.js",
"scripts": {
"example": "rimraf ./example/scripts/* && webpack --config webpack.config.js",
"webpack": "rimraf ./dist/* && webpack --config webpack.dist.config.js",
"tsc": "rimraf ./lib/* && tsc",
"build":"npm run tsc && npm run webpack"
},
"keywords": [
"react",
"dropdownlist",
"select",
"autocomplete",
"react-component"
],
"files":[
"dist",
"lib",
"README.md"
],
"author": "Yousef Gholivand",
"license": "MIT",
"devDependencies": {
"webpack": "^1.13.1",
"rimraf": "^2.5.2",
"ts-loader": "^0.8.2",
"extract-text-webpack-plugin": "^1.0.1",
"typescript": "^1.8.10"
},
"dependencies": {
"react": "^15.1.0",
"react-dom": "^15.1.0"
}
}