forked from moroshko/react-autosuggest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 4.07 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
{
"name": "react-autosuggest",
"version": "9.4.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 <[email protected]>",
"scripts": {
"start": "mkdir -p demo/dist && npm run copy-static-files && node server",
"prettier": "prettier --single-quote --write \".*.js\" \"*.js\" \"demo/src/**/*.js\" \"demo/standalone/app.js\" \"src/**/*.js\" \"test/**/*.js\"",
"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 prettier && 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",
"precommit": "lint-staged"
},
"dependencies": {
"prop-types": "^15.5.10",
"react-autowhatever": "^10.1.2",
"shallow-equal": "^1.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.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.6",
"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",
"cross-env": "^3.1.4",
"css-loader": "^0.28.4",
"es6-promise": "^4.1.0",
"eslint": "^3.19.0",
"eslint-plugin-react": "6.10.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.11.2",
"husky": "^0.13.4",
"ismobilejs": "^0.4.1",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^9.12.0",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"lint-staged": "^3.6.1",
"mocha": "^3.4.2",
"nyc": "^10.1.2",
"openurl": "^1.1.1",
"postcss-loader": "^1.3.3",
"prettier": "1.14.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-modal": "^1.7.7",
"react-transform-hmr": "^1.0.4",
"sinon": "^1.17.7",
"sinon-chai": "^2.11.0",
"style-loader": "^0.18.2",
"svgo": "^0.7.2",
"svgo-loader": "^1.2.1",
"url-loader": "^0.5.9",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"files": ["dist"],
"lint-staged": {
".*.js": ["npm run prettier", "git add"],
"*.js": ["npm run prettier", "git add"],
"demo/src/**/*.js": ["npm run prettier", "git add"],
"demo/standalone/app.js": ["npm run prettier", "git add"],
"src/**/*.js": ["npm run prettier", "git add"],
"test/**/*.js": ["npm run prettier", "git add"]
},
"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": 95,
"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"
}