-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
92 lines (92 loc) · 2.92 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
{
"name": "react-autowhatever",
"version": "10.2.1",
"description": "Accessible rendering layer for Autosuggest and Autocomplete components",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/moroshko/react-autowhatever.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": "mocha \"test/**/*.test.js\" --compilers js:babel-register --require test/setup.js",
"copy-static-files": "cp demo/src/index.html 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",
"deploy": "./scripts/deploy-to-gh-pages.sh",
"preversion": "npm run prebuild",
"postversion": "git push && git push --tags",
"prepublish": "npm run dist && npm run standalone"
},
"dependencies": {
"prop-types": "^15.5.8",
"react-themeable": "^1.1.0",
"section-iterator": "^2.0.0"
},
"peerDependencies": {
"react": ">=0.14.7"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"autosuggest-highlight": "^3.1.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^1.0.1",
"jsdom": "^9.12.0",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"mocha": "^3.2.0",
"openurl": "^1.1.1",
"postcss-loader": "^1.3.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "^1.3.1",
"react-isolated-scroll": "^0.1.0",
"react-redux": "^4.4.8",
"redux": "^3.6.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.9.0",
"style-loader": "^0.16.1",
"webpack": "^1.13.2",
"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"
],
"license": "MIT"
}