-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.52 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
{
"name": "rickscroll",
"version": "0.9.3",
"description": "Optimized scrollable view for react",
"main": "lib/js/index.js",
"scripts": {
"compile": "lessc src/less/scrollable.less lib/css/scrollable.css && babel -d ./lib/js ./src/js",
"lint": "eslint --ext .jsx --ext .js src/js --quiet",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Axosoft/rickscroll.git"
},
"files": [
"lib"
],
"author": "Axosoft, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/Axosoft/rickscroll/issues"
},
"homepage": "https://github.com/Axosoft/rickscroll",
"dependencies": {
"animation-timer": "^1.0.12",
"classnames": "^2.2.5",
"functional-easing": "^1.0.8",
"lodash": "^4.14.2",
"resize-observer-polyfill": "^1.2.1"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.9.1",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"less": "^2.7.1",
"react": "^15.0.0"
},
"peerDependencies": {
"babel-polyfill": "^6.13.0",
"react": "^0.14.0 || ^15.0.0"
},
"keywords": [
"scrolling",
"scrollable",
"scroll",
"performance",
"optimized",
"gpu",
"translate3d",
"fast"
]
}