This repository was archived by the owner on May 18, 2018. It is now read-only.
forked from alsoscotland/react-super-select
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.1 KB
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
{
"name": "react-super-select",
"version": "0.1.16",
"description": "A flexible replacement for the html select control built with React",
"main": "./lib/react-super-select.js",
"author": "Scotland Stephenson",
"homepage": "https://github.com/alsoscotland/react-super-select",
"repository": {
"type": "git",
"url": "https://github.com/alsoscotland/react-super-select.git"
},
"bugs": {
"url": "https://github.com/alsoscotland/react-super-select/issues"
},
"dependencies": {
"classnames": "^1.1.4",
"lodash": "^3.7.0"
},
"peerDependencies": {
"react": ">=0.12.0"
},
"files": [
"lib/"
],
"jest": {
"scriptPreprocessor": "./preprocessor.js",
"unmockedModulePathPatterns": [
"./node_modules/react"
],
"testPathDirs": [
"./src/"
]
},
"devDependencies": {
"babel-core": "^5.4.7",
"babel-plugin-object-assign": "^1.1.0",
"babelify": "^6.1.1",
"browserify": "^10.2.0",
"browserify-shim": "^3.8.7",
"concat": "^1.0.0",
"del": "^1.1.1",
"gulp": "^3.8.10",
"gulp-babel": "^5.1.0",
"gulp-browserify": "^0.5.1",
"gulp-bump": "^0.3.1",
"gulp-concat": "^2.5.2",
"gulp-connect": "^2.2.0",
"gulp-gh-pages": "^0.5.1",
"gulp-git": "^1.2.4",
"gulp-jshint": "^1.9.2",
"gulp-less": "^3.0.3",
"gulp-markdown-to-json": "^0.2.1",
"gulp-minify-css": "^1.1.1",
"gulp-recess": "^1.1.2",
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.3.0",
"gulp-streamify": "0.0.5",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.4",
"jest-cli": ">=0.4.0",
"jshint-stylish": "^1.0.0",
"react": "^0.13.3",
"react-tools": ">=0.13.0",
"reactify": "^1.1.1",
"run-sequence": "^1.1.0",
"vinyl-source-stream": "^1.1.0",
"vinyl-transform": "^1.0.0"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"test": "$(npm bin)/jest"
},
"readmeFilename": "README.md",
"keywords": [
"react",
"react-component",
"select",
"UI-control",
"UI",
"accessible",
"multiselect",
"tagging",
"tags"
],
"license": "MIT"
}