forked from dotcore64/react-scroll-ondrag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.32 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "react-scroll-ondrag",
"version": "1.0.0",
"description": "React library for scrolling elements by dragging the mouse",
"main": "dist/react-scroll-ondrag.cjs.js",
"module": "dist/react-scroll-ondrag.esm.js",
"scripts": {
"lint": "eslint 'src/*.js' 'test/*.js?(x)'",
"pretest": "npm run lint",
"test": "NODE_ENV=test karma start --single-run --no-auto-watch",
"tdd": "NODE_ENV=test karma start",
"build": "rollup -c",
"prepare": "npm run test && npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/perrin4869/react-scroll-ondrag.git"
},
"keywords": [
"react",
"hooks",
"scroll",
"mouse",
"drag"
],
"author": "Julian Grinblat <julian@dotcore.co.il>",
"license": "ISC",
"bugs": {
"url": "https://github.com/perrin4869/react-scroll-ondrag/issues"
},
"homepage": "https://github.com/perrin4869/react-scroll-ondrag#readme",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-plugin-dev-expression": "^0.2.2",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"dirty-chai": "^2.0.1",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"karma": "^4.3.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-coveralls": "^2.1.0",
"karma-firefox-launcher": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^7.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"puppeteer": "^1.19.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.1",
"sinon": "^7.4.2",
"sinon-chai": "^3.3.0",
"styled-components": "^4.3.2"
},
"dependencies": {
"tiny-invariant": "^1.0.6"
}
}