-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
86 lines (86 loc) · 2.02 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
{
"name": "react-fuzzy-picker",
"version": "1.2.1",
"description": "Search through a collection of items similar to sublime text",
"main": "dist/index.js",
"scripts": {
"test": "mocha test/unit/index.js --compilers js:babel-register",
"build": "gulp",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/1egoman/fuzzy-picker.git"
},
"keywords": [
"fuzzy",
"search",
"fuzzy search",
"react",
"react-component",
"sublime",
"ctrl p",
"command p",
"cmd p",
"picker"
],
"author": "Ryan Gaus",
"license": "MIT",
"bugs": {
"url": "https://github.com/1egoman/fuzzy-picker/issues"
},
"homepage": "https://github.com/1egoman/fuzzy-picker",
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^16.2.3",
"chai": "^2.0.0",
"del": "^1.1.1",
"envify": "^3.4.1",
"enzyme": "^2.7.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.0.0",
"gulp-connect": "^5.7.0",
"gulp-istanbul": "^1.1.3",
"gulp-jscs": "^1.4.0",
"gulp-jshint": "^2.1.0",
"gulp-load-plugins": "^1.5.0",
"gulp-mocha": "^6.0.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^0.6.6",
"gulp-sass": "^4.0.2",
"isparta": "^4.1.1",
"jsdom": "^9.2.1",
"jshint-stylish": "^1.0.0",
"mkdirp": "^0.5.0",
"mocha": "^5.2.0",
"react": "^15.4.1",
"react-addons-test-utils": "15.4.1",
"react-dom": "^15.4.1",
"sinon": "^1.17.6",
"sinon-chai": "^2.7.0",
"uglifyify": "^3.0.2",
"uglifyjs": "^2.4.10",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.11.1"
},
"nodeBoilerplateOptions": {
"mochaGlobals": [
"stub",
"spy",
"expect"
]
},
"dependencies": {
"classnames": "^2.2.5",
"fuzzysearch": "^1.0.3"
},
"peerDependencies": {
"react": "16.x.x",
"react-dom": "16.x.x",
"prop-types": "16.8.0"
}
}