-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.74 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-predictive-input",
"version": "1.2.6",
"description": "WAI-ARIA compliant React autocomplete component",
"main": "dist/react-autocomplete.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JFusco/react-predictive-input"
},
"author": {
"name": "Joe Fusco",
"email": "jfusco311@gmail.com"
},
"peerDependencies": {
"react": "16.2.0"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-eslint": "7.1.0",
"babel-jest": "16.0.0",
"babel-loader": "6.2.7",
"babel-plugin-transform-class-properties": "6.18.0",
"babel-plugin-transform-function-bind": "6.8.0",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-register": "6.18.0",
"copy-webpack-plugin": "4.0.0",
"cross-env": "3.1.3",
"css-loader": "0.25.0",
"del": "2.2.1",
"extract-text-webpack-plugin": "1.0.1",
"gulp": "3.9.1",
"gulp-clean-css": "2.0.11",
"gulp-filelog": "~0.4.1",
"gulp-load-plugins": "1.4.0",
"gulp-rename": "1.2.2",
"gulp-sass": "2.3.2",
"gulp-scss-lint": "0.4.0",
"gulp-scss-lint-stylish": "1.0.1",
"gulp-util": "~3.0.7",
"jest-cli": "16.0.2",
"node-sass": "3.11.2",
"prop-types": "^15.6.0",
"react": "16.2.0",
"react-addons-test-utils": "15.3.2",
"react-addons-update": "15.3.2",
"react-dom": "16.2.0",
"run-sequence": "1.2.1",
"sass-loader": "4.0.2",
"style-loader": "0.13.1",
"webpack": "1.13.3",
"webpack-babel-jest": "1.0.4",
"webpack-dev-server": "1.16.2"
},
"scripts": {
"test": "jest --coverage",
"lint": "eslint --fix --color --debug --ignore-path .eslintignore ./src/component/js/*",
"start": "cross-env NODE_ENV=dev webpack-dev-server --config ./webpack.config.babel.js --hot --inline",
"start-docs": "webpack-dev-server --config ./webpack.config.example.babel.js --hot --inline",
"build-docs": "webpack --config ./webpack.config.example.babel.js",
"build": "gulp && npm run lint && npm test && cross-env NODE_ENV=prod webpack --config ./webpack.config.babel.js --display-chunks --display-modules --progress --colors && npm run build-docs"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/webpack-babel-jest",
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"keywords": [
"react",
"autocomplete",
"suggestions",
"autosuggest",
"search",
"react component",
"autosuggest",
"auto-suggest",
"auto-complete",
"auto suggest",
"auto complete",
"react autosuggest",
"react autocomplete"
]
}