|
1 | 1 | {
|
2 | 2 | "name": "react-scroll-into-view-if-needed",
|
3 |
| - "version": "2.1.7", |
| 3 | + "version": "2.1.8", |
4 | 4 | "description": "A thin component wrapper around scroll-into-view-if-needed",
|
5 | 5 | "main": "dist/umd/index.js",
|
6 | 6 | "module": "dist/es/index.js",
|
7 | 7 | "repository": "[email protected]:icd2k3/react-scroll-into-view-if-needed.git",
|
8 |
| - "author": "Justin Schrader <[email protected]>", |
| 8 | + "author": "Justin Schrader <[email protected]>", |
| 9 | + "license": "MIT", |
9 | 10 | "keywords": [
|
10 | 11 | "react",
|
11 | 12 | "scroll-into-view-if-needed",
|
12 | 13 | "scroll",
|
13 | 14 | "scrolling"
|
14 | 15 | ],
|
15 |
| - "license": "MIT", |
16 |
| - "peerDependencies": { |
17 |
| - "prop-types": "^15.6.1", |
18 |
| - "react": "^16.0.0" |
19 |
| - }, |
20 |
| - "dependencies": {}, |
21 |
| - "devDependencies": { |
22 |
| - "babel-cli": "^6.26.0", |
23 |
| - "babel-core": "^6.26.3", |
24 |
| - "babel-eslint": "^8.2.6", |
25 |
| - "babel-jest": "^23.4.0", |
26 |
| - "babel-plugin-external-helpers": "^6.22.0", |
27 |
| - "babel-preset-env": "^1.7.0", |
28 |
| - "babel-preset-react": "^6.24.1", |
29 |
| - "babel-preset-stage-2": "^6.24.1", |
30 |
| - "coveralls": "^3.0.2", |
31 |
| - "cross-env": "^5.2.0", |
32 |
| - "enzyme": "^3.3.0", |
33 |
| - "enzyme-adapter-react-16": "^1.1.1", |
34 |
| - "eslint": "^5.1.0", |
35 |
| - "eslint-config-airbnb": "^17.0.0", |
36 |
| - "eslint-plugin-import": "^2.13.0", |
37 |
| - "eslint-plugin-jsx-a11y": "^6.1.0", |
38 |
| - "eslint-plugin-react": "^7.10.0", |
39 |
| - "jest": "^23.4.0", |
40 |
| - "prop-types": "^15.6.2", |
41 |
| - "react": "^16.4.1", |
42 |
| - "react-dom": "^16.4.1", |
43 |
| - "rollup": "^0.62.0", |
44 |
| - "rollup-plugin-babel": "^3.0.7", |
45 |
| - "rollup-plugin-commonjs": "^9.1.3", |
46 |
| - "rollup-plugin-node-resolve": "^3.3.0", |
47 |
| - "scroll-into-view-if-needed": "^2.2.16" |
48 |
| - }, |
49 | 16 | "scripts": {
|
50 | 17 | "build": "rollup -c && cross-env BUILD_TYPE=standalone rollup -c",
|
51 | 18 | "lint": "eslint ./src/**",
|
52 | 19 | "prepublishOnly": "yarn build",
|
53 | 20 | "test": "jest",
|
54 | 21 | "travis": "yarn run lint && jest && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
|
| 22 | + }, |
| 23 | + "husky": { |
| 24 | + "hooks": { |
| 25 | + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", |
| 26 | + "pre-push": "yarn lint && yarn test" |
| 27 | + } |
| 28 | + }, |
| 29 | + "peerDependencies": { |
| 30 | + "prop-types": ">=15", |
| 31 | + "react": ">=16" |
| 32 | + }, |
| 33 | + "dependencies": {}, |
| 34 | + "devDependencies": { |
| 35 | + "@babel/cli": "^7.4.4", |
| 36 | + "@babel/core": "^7.4.4", |
| 37 | + "@babel/plugin-proposal-class-properties": "^7.4.4", |
| 38 | + "@babel/preset-env": "^7.4.4", |
| 39 | + "@babel/preset-react": "^7.0.0", |
| 40 | + "@commitlint/config-conventional": "^7.6.0", |
| 41 | + "babel-eslint": "^10.0.1", |
| 42 | + "commitlint": "^7.6.1", |
| 43 | + "coveralls": "^3.0.3", |
| 44 | + "cross-env": "^5.2.0", |
| 45 | + "enzyme": "^3.9.0", |
| 46 | + "enzyme-adapter-react-16": "^1.12.1", |
| 47 | + "enzyme-to-json": "^3.3.5", |
| 48 | + "eslint": "^5.16.0", |
| 49 | + "eslint-config-airbnb": "^17.1.0", |
| 50 | + "eslint-plugin-import": "^2.17.2", |
| 51 | + "eslint-plugin-jsx-a11y": "^6.2.1", |
| 52 | + "eslint-plugin-react": "^7.13.0", |
| 53 | + "husky": "^2.2.0", |
| 54 | + "jest": "^24.8.0", |
| 55 | + "prop-types": "^15.7.2", |
| 56 | + "react": "^16.8.6", |
| 57 | + "react-dom": "^16.8.6", |
| 58 | + "rollup": "^1.11.3", |
| 59 | + "rollup-plugin-babel": "^4.3.2", |
| 60 | + "rollup-plugin-commonjs": "^9.3.4", |
| 61 | + "rollup-plugin-node-resolve": "^4.2.3", |
| 62 | + "scroll-into-view-if-needed": "^2.2.20" |
55 | 63 | }
|
56 | 64 | }
|
0 commit comments