forked from soenkekluth/react-sticky-state
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.37 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
58
59
60
{
"name": "react-sticky-state",
"version": "1.3.11",
"description": "React StickyState Component makes native position:sticky statefull and polyfills the missing sticky browser feature",
"main": "dist/index.js",
"jsnext:main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-debug": "browserify -t [ babelify --presets [ es2015 react stage-0] --plugins [ transform-class-properties ] ] -t browserify-shim ./index.js --standalone ReactStickyState -o dist/react-sticky-state.js",
"build": "npm run build-debug && uglifyjs dist/react-sticky-state.js -o dist/react-sticky-state.min.js",
"dist": "npm run babel && npm run build",
"babel": "babel ./index.js -o ./dist/index.js",
"start": "npm run build-debug && node ./node_modules/concurrently/src/main.js --kill-others \"watchify -d -t [ babelify --presets [ es2015 react stage-0] --plugins [ transform-class-properties ] ] -t browserify-shim ./index.js --s ReactStickyState -o dist/react-sticky-state.js -v\" \"npm run server\"",
"server": "browser-sync start --server --no-ghost-mode --directory --files 'examples/**/**, dist/*.js' --startPath examples/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soenkekluth/react-sticky-state.git"
},
"keywords": [
"react",
"component",
"sticky",
"position:sticky",
"position",
"state"
],
"browserify-shim": {
"react": "global:React"
},
"author": "Sönke Kluth <soenke.kluth@gmail.com> (http://soenkekluth.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/soenkekluth/react-sticky-state/issues"
},
"homepage": "https://github.com/soenkekluth/react-sticky-state#readme",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-plugin-add-module-exports": "^0.1.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browser-sync": "^2.12.5",
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"concurrently": "^2.0.0",
"react": "^15.0.2",
"uglifyjs": "^2.4.10",
"watchify": "^3.7.0"
},
"dependencies": {
"classnames": "^2.2.5",
"fastscroll": "1.7.8",
"object-assign": "^4.0.1"
}
}