forked from KyleAMathews/react-headroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 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
{
"name": "react-headroom",
"description": "Hide your header until you need it. React.js port of headroom.js",
"version": "1.8.0",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/KyleAMathews/react-headroom/issues"
},
"dependencies": {
"raf": "^3.1.0",
"react-addons-pure-render-mixin": "^0.14.3"
},
"devDependencies": {
"object-assign": "^4.0.1",
"chai": "^3.4.1",
"cjsx-loader": "^2.1.0",
"coffee-loader": "^0.7.2",
"coffee-react": "^4.0.0",
"coffee-script": "^1.9.0",
"css-loader": "^0.23.0",
"gulp": "^3.8.11",
"mocha": "^2.1.0",
"mocha-unfunk-reporter": "^0.4.0",
"pre-commit": "^1.0.5",
"react": "^0.14.2",
"react-dom": "^0.14.3",
"react-hot-loader": "^1.1.5",
"react-responsive-grid": "0.3.0",
"style-loader": "^0.13.0",
"underscore": "^1.8.3",
"webpack": "^1.5.3",
"webpack-dev-server": "^1.7.0"
},
"directories": {
"example": "examples"
},
"homepage": "https://github.com/KyleAMathews/react-headroom",
"keywords": [
"headroom",
"react",
"react-component"
],
"license": "MIT",
"main": "dist/index.js",
"peerDependencies": {
"react": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/KyleAMathews/react-headroom.git"
},
"scripts": {
"test-watch": "NODE_ENV=test node_modules/.bin/mocha -w --recursive --compilers coffee:coffee-script/register -R mocha-unfunk-reporter",
"test": "NODE_ENV=test node_modules/.bin/mocha --recursive --compilers coffee:coffee-script/register -R mocha-unfunk-reporter",
"watch": "./node_modules/.bin/webpack-dev-server --hot"
}
}