-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.79 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
{
"name": "react-inverted-scrollview",
"version": "1.0.7",
"description": "Easily support inverted scrolling. Maintains a correct scroll position when new content is added.",
"main": "lib/index.js",
"files": [
"lib"
],
"keywords": [
"inverted",
"scroll",
"ui",
"infinite loading",
"scrollTop",
"scrollBottom",
"react"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vejersele/react-inverted-scrollview.git"
},
"scripts": {
"clean": "rm -rf lib",
"build:flow": "flow-copy-source src/ lib/ --ignore __test__/**/*",
"build:babel": "babel src/ --out-dir lib/ --ignore __test__",
"build": "npm run clean && npm run build:babel && npm run build:flow",
"storybook": "start-storybook -p 6006",
"test": "flow check && jest src/",
"prepublish": "npm test && npm run build",
"precommit": "pretty-quick --staged"
},
"author": "Jelle Versele",
"license": "MIT",
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0"
},
"devDependencies": {
"@storybook/react": "^3.4.7",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"casual-browserify": "^1.5.19-2",
"flow-bin": "^0.103.0",
"flow-copy-source": "^2.0.0",
"husky": "^0.14.3",
"jest": "^23.1.0",
"lodash": "^4.17.10",
"prettier": "^1.13.5",
"pretty-quick": "^1.6.0",
"react": "^16.4.1",
"react-dom": "^16.4.1"
}
}