forked from takempf/react-simple-dropdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.73 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.73 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
{
"name": "react-simple-dropdown",
"version": "1.0.1",
"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}",
"build": "babel components/**/* --out-dir lib",
"watch": "npm run build -- -w",
"dev": "npm-run-all --parallel watch test:browser",
"clean": "trash lib"
},
"repository": {
"type": "git",
"url": "https://github.com/Fauntleroy/react-simple-dropdown.git"
},
"keywords": [
"react",
"react-component",
"component",
"dropdown"
],
"author": {
"name": "Timothy Kempf",
"email": "tim@kemp59f.info",
"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"
},
"devDependencies": {
"babel": "^6.3.13",
"babel-cli": "^6.3.15",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"dom-classes": "0.0.1",
"mkdirp": "^0.5.1",
"npm-run-all": "^1.4.0",
"react": "0.14.x",
"react-addons-test-utils": "^0.14.3",
"react-dom": "0.14.x",
"simple-mock": "^0.3.1",
"tape": "^4.0.0",
"trash-cli": "^1.2.0",
"watchify": "^3.2.3",
"zuul": "^3.1.0"
},
"peerDependencies": {
"react": "0.14.x",
"react-dom": "0.14.x"
},
"babel": {
"presets": [
"es2015",
"react"
]
}
}