forked from yousef86/dropdownlist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 811 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
{
"name": "dropdownlist",
"version": "0.1.0",
"description": "a simple and light 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"
],
"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"
}
}