forked from moroshko/react-autosuggest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
124 lines (124 loc) · 3.65 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "react-autosuggest",
"version": "7.0.2",
"description": "WAI-ARIA compliant React autosuggest component",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/moroshko/react-autosuggest.git"
},
"author": "Misha Moroshko <michael.moroshko@gmail.com>",
"scripts": {
"start": "mkdir -p demo/dist && npm run copy-static-files && node server",
"lint": "eslint src test demo/src demo/standalone/app.js server.js webpack.*.js",
"test": "nyc mocha \"test/**/*.test.js\"",
"copy-static-files": "cp demo/src/index.html demo/src/components/App/components/Examples/components/Basic/autosuggest.css demo/dist/",
"dist": "rm -rf dist && mkdir dist && babel src -d dist",
"demo-dist": "rm -rf demo/dist && mkdir demo/dist && npm run copy-static-files && cross-env BABEL_ENV=production webpack --config webpack.gh-pages.config.js",
"standalone": "cross-env BABEL_ENV=production webpack --config webpack.standalone.config.js && webpack --config webpack.standalone-demo.config.js",
"prebuild": "npm run lint && npm test",
"build": "npm run dist && npm run standalone",
"gh-pages-build": "npm run prebuild && npm run demo-dist",
"postversion": "git push && git push --tags",
"prepublish": "npm run dist && npm run standalone"
},
"dependencies": {
"react-autowhatever": "^7.0.0",
"react-redux": "^5.0.1",
"redux": "^3.6.0",
"shallow-equal": "^1.0.0"
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.1"
},
"devDependencies": {
"autoprefixer": "^6.5.4",
"autosuggest-highlight": "^3.1.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-react-remove-prop-types": "^0.2.11",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"bithound": "^1.7.0",
"chai": "^3.5.0",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"es6-promise": "^4.0.5",
"eslint": "^3.12.2",
"eslint-plugin-react": "6.8.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"ismobilejs": "^0.4.0",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^9.8.3",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"openurl": "^1.1.1",
"postcss-loader": "^1.2.1",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"react-modal": "^1.6.4",
"react-transform-hmr": "^1.0.4",
"redux-thunk": "^2.1.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"svgo": "^0.7.1",
"svgo-loader": "^1.1.2",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"files": [
"dist"
],
"keywords": [
"autosuggest",
"autocomplete",
"auto-suggest",
"auto-complete",
"auto suggest",
"auto complete",
"react autosuggest",
"react autocomplete",
"react auto-suggest",
"react auto-complete",
"react auto suggest",
"react auto complete",
"react-autosuggest",
"react-autocomplete",
"react-auto-suggest",
"react-auto-complete",
"react-component"
],
"nyc": {
"statements": 96,
"branches": 91,
"functions": 100,
"lines": 95,
"include": [
"src/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"require": [
"babel-register",
"./test/setup.js"
],
"check-coverage": true
},
"license": "MIT"
}