forked from captivationsoftware/react-sticky
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.44 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.44 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
{
"name": "react-sticky",
"version": "3.0.0",
"description": "Sticky component for React",
"main": "./lib/sticky",
"scripts": {
"prepublish": "browserify --no-bundle-external -p [minifyify --map sticky.js.map --output ./dist/sticky.js.map --uglify --compress --dead_code--comparisons 0 ] -s Sticky ./lib/sticky.js --debug > ./dist/sticky.min.js",
"test": "mocha --compilers js:babel/register"
},
"repository": {
"type": "git",
"url": "https://github.com/captivationsoftware/react-sticky"
},
"keywords": [
"react-component",
"React",
"Sticky"
],
"author": "Captivation Software",
"contributors": [
{
"name": "Aaron Goin",
"email": "aarondgoin@gmail.com"
},
{
"name": "Alejandro Tardin",
"email": "alejandro@tardin.com"
},
{
"name": "Josh Carr",
"email": "joshcarr@gmail.com"
},
{
"name": "George Lifchits",
"email": "george.lifchits@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/captivationsoftware/react-sticky/issues"
},
"homepage": "https://github.com/captivationsoftware/react-sticky",
"dependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"devDependencies": {
"babel": "^5.8.21",
"browserify": "^11.0.1",
"chai": "^3.2.0",
"jsdom": "6.x",
"lodash": "^3.10.1",
"minifyify": "^7.0.5",
"mocha": "^2.2.5",
"react-addons-test-utils": "^0.14.0"
}
}