-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.62 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
{
"name": "react-sticky",
"version": "5.0.0",
"description": "Sticky component for React",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"transpile": "babel src --loose --out-dir lib",
"dist": "webpack lib/index.js dist/react-sticky.js --display-modules --progress && NODE_ENV=production webpack lib/index.js dist/react-sticky.min.js --display-modules --progress",
"build": "npm run transpile && npm run dist",
"prepublish": "npm run clean && npm run build",
"test": "mocha --compilers js:babel-core/register test/unit"
},
"repository": {
"type": "git",
"url": "https://github.com/captivationsoftware/react-sticky"
},
"keywords": [
"react-component",
"React",
"Sticky"
],
"author": "Captivation Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/captivationsoftware/react-sticky/issues"
},
"homepage": "https://github.com/captivationsoftware/react-sticky",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-core": "^6.6.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.2.0",
"jsdom": "8.0.4",
"mocha": "^2.2.5",
"react": "^0.14.0 || ^15.0.0",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.0 || ^15.0.0",
"rimraf": "^2.5.2",
"webpack": "^1.13.0"
},
"dependencies": {
"react-mt-svg-lines": "^0.4.5"
}
}