forked from captivationsoftware/react-sticky
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.3 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
{
"name": "react-sticky",
"version": "6.0.1",
"description": "Sticky component for React",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"compile": "babel src --loose --out-dir lib",
"start": "webpack --watch",
"prepublish": "npm run clean && npm run compile",
"test": "mocha test/setup.js test/spec/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/captivationsoftware/react-sticky"
},
"keywords": [
"react-component",
"React",
"Sticky"
],
"author": "Captivation Software",
"license": "MIT",
"homepage": "https://github.com/captivationsoftware/react-sticky",
"dependencies": {
"prop-types": "^15.5.8",
"raf": "^3.3.0"
},
"peerDependencies": {
"react": "^15.3.0",
"react-dom": "^15.3.0"
},
"devDependencies": {
"babel-cli": "^6.23.1",
"babel-core": "^6.23.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"enzyme": "^2.8.2",
"jsdom": "8.0.4",
"mocha": "^2.4.5",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.5.2",
"webpack": "^2.2.0"
}
}