forked from FormidableLabs/radon-select
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.51 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.51 KB
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
{
"name": "radon-select",
"version": "1.1.1",
"description": "React select box replacement component",
"main": "index.js",
"scripts": {
"examples": "webpack-dev-server --config examples/webpack.config.js --no-info --content-base examples/",
"lib": "rimraf lib && babel src --out-dir lib",
"lint": "eslint src/select.jsx",
"prepublish": "npm run lib",
"test": "karma start"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-preset-stage-0": "^6.0.0",
"chai": "^2.1.2",
"eslint": "^0.24.1",
"eslint-plugin-react": "^2.7.0",
"jsx-loader": "^0.12.2",
"karma": "^0.13.13",
"karma-babel-preprocessor": "^5.2.2",
"karma-chrome-launcher": "^0.2.1",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-phantomjs-shim": "^1.1.1",
"karma-script-launcher": "^0.1.0",
"karma-sinon-chai": "^1.1.0",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.1",
"phantomjs": "^1.9.18",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.7",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0",
"webpack": "^1.5.3",
"webpack-dev-server": "^1.7.0"
},
"dependencies": {
"babel-core": "^6.7.4",
"object-assign": "^4.0.0",
"rimraf": "^2.4.1"
}
}