forked from moroshko/react-autosuggest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.17 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
{
"name": "react-autosuggest",
"version": "3.7.0",
"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 <[email protected]>",
"scripts": {
"start": "mkdir -p demo/dist && npm run copy-static-files && node server",
"lint": "eslint src demo/src test server.js demo/standalone/app.js webpack.dev.config.js webpack.gh-pages.config.js webpack.standalone.config.js webpack.standalone-demo.config.js",
"test": "mocha test/index.js --compilers js:babel-register",
"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 && webpack --config webpack.gh-pages.config.js",
"standalone": "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": "^3.1.0",
"react-redux": "^4.4.0",
"redux": "^3.3.1"
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0-rc.1"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"autosuggest-highlight": "^2.1.1",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"es6-promise": "^3.1.2",
"eslint": "2.2.0",
"eslint-plugin-react": "^4.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"happypack": "^1.1.4",
"ismobilejs": "^0.4.0",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^8.2.0",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"mocha": "^2.4.5",
"react": "^15.0.0-rc.1",
"react-addons-test-utils": "^15.0.0-rc.1",
"react-dom": "^15.0.0-rc.1",
"react-transform-hmr": "^1.0.3",
"redux-thunk": "^2.0.1",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"svgo": "^0.6.3",
"svgo-loader": "^1.1.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"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"
],
"license": "MIT"
}