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
111 lines (111 loc) · 3.04 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.04 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react-super-select",
"version": "1.0.18",
"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"
},
"files": [
"lib/"
],
"jest": {
"unmockedModulePathPatterns": [
"./node_modules/react",
"./node_modules/react-dom"
],
"roots": [
"./src/"
],
"transform": {
".*": "./node_modules/babel-jest"
},
"moduleFileExtensions": [
"js",
"json",
"es6"
]
},
"peerDependencies": {
"classnames": "*",
"lodash": "*",
"prop-types": "*",
"react": ">=0.14.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-object-assign": "^1.2.1",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.3.0",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.5.0",
"classnames": "^2.2.5",
"docco": "^0.7.0",
"eslint": "^3.19.0",
"eslint-plugin-react": "^7.0.1",
"exorcist": "^0.4.0",
"gulp": "^3.9.1",
"gulp-browserify": "^0.5.1",
"gulp-bump": "^2.7.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.0.0",
"gulp-eslint": "^3.0.1",
"gulp-gh-pages": "^0.5.4",
"gulp-git": "^2.2.0",
"gulp-less": "^3.3.0",
"gulp-markdown-to-json": "^1.0.3",
"gulp-minify-css": "^1.2.4",
"gulp-recess": "^1.2.0",
"gulp-rename": "^1.2.2",
"gulp-task-listing": "^1.0.1",
"gulp-util": "^3.0.8",
"jest-cli": "^20.0.3",
"less": "^2.7.2",
"marked": "^0.3.6",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": ">=15.5.4",
"run-sequence": "^1.2.2",
"uglifyify": "^3.0.4"
},
"scripts": {
"build": "npm run clean && npm run npm:build:css && npm run npm:babel:js && npm run docs:build-sequence",
"clean": "rm -rf ./lib && mkdir ./lib",
"docs:build-sequence": "npm run docs:clean && $(npm bin)/gulp build:docs-gulp-sequence",
"docs:clean": "rm -rf ./src_docs/markdown/js/**/* docs_generated/*",
"npm:babel:js": "$(npm bin)/babel src/react-super-select.js --out-file lib/react-super-select.js",
"npm:build:css": "lessc ./src/react-super-select.less ./lib/react-super-select.css",
"test": "$(npm bin)/jest"
},
"browserify-shim": {
"classnames": "global:classNames",
"lodash": "global:_",
"react": "global:React"
},
"readmeFilename": "README.md",
"keywords": [
"react",
"react-component",
"select",
"UI-control",
"UI",
"accessible",
"multiselect",
"tagging",
"tags"
],
"license": "MIT"
}