forked from Fauntleroy/react-simple-dropdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.75 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
{
"name": "react-simple-dropdown",
"version": "3.2.0",
"description": "Non-prescriptive React.js dropdown toolkit",
"main": "lib/components/Dropdown.js",
"scripts": {
"prepublish": "npm run build",
"postpublish": "npm run clean",
"test": "npm run build && zuul -- test/**/*.{js,jsx}",
"test:browser": "zuul --local 55555 -- test/**/*.{js,jsx}",
"test:electron": "zuul --electron -- test/**/*.{js,jsx}",
"build": "babel src/components --out-dir lib/components",
"watch": "npm run build -- -w",
"dev": "npm-run-all --parallel watch test:browser",
"lint": "eslint src --ext .js --ext .jsx",
"clean": "trash lib",
"docs:build": "npm run build && npm-run-all -p docs:build:*",
"docs:build:css": "lessc src/docs/index.less docs/index.css",
"docs:build:js": "browserify -t [ babelify ] -t [ brfs ] --extension=.jsx src/docs/index.jsx --outfile docs/index.js",
"docs:build:html": "ncp src/docs/index.html docs/index.html",
"docs:watch": "npm-run-all -p docs:watch:*",
"docs:watch:css": "autoless src/docs/ docs/",
"docs:watch:js": "watchify -t [ babelify ] -t [ brfs ] --extension=.jsx src/docs/index.jsx --outfile docs/index.js -v",
"docs:watch:html": "sane 'npm run docs:build:html' src/docs/ --glob='index.html'"
},
"repository": {
"type": "git",
"url": "https://github.com/Fauntleroy/react-simple-dropdown.git"
},
"keywords": [
"react",
"react-component",
"component",
"dropdown"
],
"author": {
"name": "Timothy Kempf",
"email": "[email protected]",
"url": "http://kempfffffffffffffffffffffffffffffffffffffffffffffffffffffffffff.info"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Fauntleroy/react-simple-dropdown/issues"
},
"homepage": "https://github.com/Fauntleroy/react-simple-dropdown",
"dependencies": {
"classnames": "^2.1.2",
"prop-types": "^15.5.8"
},
"devDependencies": {
"@meadow/eslint-config": "^2.0.2",
"autoless": "^0.1.7",
"babel": "6.5.2",
"babel-cli": "6.10.1",
"babel-eslint": "^7.2.2",
"babel-preset-es2016": "6.0.11",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"babelify": "^7.3.0",
"brfs": "^1.4.3",
"browserify": "^13.1.0",
"dom-classes": "0.0.1",
"electron": "^1.6.2",
"eslint": "^3.19.0",
"highlight.js": "^9.6.0",
"less": "^2.7.1",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"npm-run-all": "^1.4.0",
"react": "^15.5.0",
"react-dom": "^15.5.0",
"react-highlight": "^0.9.0",
"sane": "^1.4.1",
"simple-mock": "0.8.0",
"tape": "^4.0.0",
"trash-cli": "^1.2.0",
"watchify": "^3.7.0",
"zuul": "^3.11.1"
},
"peerDependencies": {
"react": "0.14.x || 15.x",
"react-dom": "0.14.x || 15.x"
}
}