forked from gm0t/react-sticky-el
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.76 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "react-sticky-el",
"version": "1.0.13",
"description": "Sticky component for React",
"main": "lib/index.js",
"jsnext:main": "es/index",
"scripts": {
"build": "npm run build-cjs && npm run build-es && npm run build-dist",
"build-es": "rimraf es && cross-env BABEL_ENV=es babel src --out-dir es",
"build-cjs": "rimraf lib && cross-env BABEL_ENV=cjs babel ./src -d lib --ignore __tests__",
"build-dist": "rimraf dist && npm run build-dist-examples && npm run build-dist-lib",
"build-dist-examples": "NODE_ENV=production webpack -p --config webpack-examples.config.js",
"build-dist-lib": "webpack src/index.js dist/react-sticky-el.js && NODE_ENV=production webpack -p src/index.js dist/react-sticky-el.min.js --display-modules --progress",
"start": "node examples-server.js",
"test": "BABEL_ENV=test mocha --require ./test/setup --compilers js:babel-core/register test/unit",
"test-watch": "BABEL_ENV=test mocha -w --require ./test/setup --compilers js:babel-core/register test/unit",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gm0t/react-sticky-el.git"
},
"keywords": [
"react",
"reactjs",
"sticky",
"fixed",
"react-sticky"
],
"files": [
"lib",
"es",
"*.md"
],
"author": "Mikhail Bogdanov <[email protected]> (https://github.com/gm0t)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gm0t/react-sticky-el/issues"
},
"homepage": "https://github.com/gm0t/react-sticky-el#readme",
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-rewire-exports": "^0.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"cross-env": "^5.0.3",
"css-loader": "^0.25.0",
"express": "^4.14.0",
"html-webpack-plugin": "^2.24.1",
"jsdom": "^9.10.0",
"mocha": "^3.2.0",
"node-sass": "^3.13.0",
"react": "^0.14.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^0.14.0",
"react-hot-loader": "^3.0.0-beta.6",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.3",
"webpack-dev-server": "^1.16.1",
"webpack-hot-middleware": "^2.12.2"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}