-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.86 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
59
60
61
62
63
64
65
66
67
68
{
"name": "react-selekt",
"version": "0.3.0",
"description": "Ultra minimal multi-select component for React.",
"main": "./dist/react-selekt.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"test:watch": "npm test -- --watch",
"coverage": "cross-env NODE=test nyc --reporter=lcov --reporter=text npm test",
"start": "node examples/server.js",
"build": "cross-env NODE=production rimraf dist && webpack -p --config webpack.production.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikethehud/react-selekt.git"
},
"keywords": [
"react",
"react-component",
"select",
"multiselect"
],
"author": "Mike Hudson <[email protected]> (http://eben.co.nz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikethehud/react-selekt/issues"
},
"homepage": "https://github.com/mikethehud/react-selekt#readme",
"dependencies": {
"react": "^16.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"express": "^4.16.2",
"istanbul": "^1.0.0-alpha.2",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"mocha": "^4.1.0",
"nyc": "^11.4.1",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"sinon": "^4.1.3",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"**/test/**/*",
"packages/**/*"
],
"sourceMap": false,
"instrument": false
}
}