forked from instructure-react/react-select-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "react-select-box",
"version": "2.0.1",
"description": "An accessible select box component for React.",
"main": "lib/select-box.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "NODE_ENV=production webpack lib/select-box.js dist/react-select-box.js && NODE_ENV=production webpack lib/select-box.js dist/react-select-box.min.js --optimize-minimize",
"test": "node_modules/karma/bin/karma start",
"start": "gulp serve"
},
"repository": {
"type": "git",
"url": "https://github.com/instructure/react-select-box.git"
},
"keywords": [
"react",
"component",
"select"
],
"author": "Brent Burgoyne",
"license": "MIT",
"bugs": {
"url": "https://github.com/instructure/react-select-box/issues"
},
"homepage": "https://github.com/instructure/react-select-box",
"devDependencies": {
"browserify": "^5.9.1",
"chai": "^1.9.1",
"gulp": "^3.8.6",
"gulp-cached": "^1.0.1",
"gulp-connect": "^2.0.6",
"gulp-eslint": "^0.1.8",
"jsx-loader": "^0.13.2",
"karma": "^0.12.21",
"karma-chai": "^0.1.0",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.6",
"karma-webpack": "^1.2.1",
"mocha": "^1.21.3",
"react": "^0.12.0",
"vinyl-source-stream": "^0.1.1",
"webpack": "^1.3.3-beta1",
"webpack-dev-server": "^1.4.9"
}
}