-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
83 lines (83 loc) · 2.08 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "react-scrollchor",
"version": "7.0.2",
"description": "A React component for scrolling to #hash links with smooth animations",
"files": [
"lib"
],
"repository": "https://github.com/some-react-components/react-scrollchor.git",
"main": "lib/scrollchor.js",
"module": "lib/scrollchor.es.js",
"types": "lib/index.d.ts",
"engines": {
"npm": ">=3.0"
},
"scripts": {
"build": "rimraf lib && mkdirp lib && rollup -c",
"lint": "eslint src/**/*.*",
"test": "exit 0",
"release": "np"
},
"keywords": [
"react",
"component",
"react-component",
"scroll",
"anchor",
"scrollchor",
"hash",
"animate"
],
"peerDependencies": {
"react": ">=16.8.0 || 17.x.x"
},
"optionalDependencies": {
"@types/react": ">=16.8.0 || 17.x.x"
},
"dependencies": {
"requestanimationframe-timer": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-newlines": "^1.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.1.2",
"lint-staged": "^10.5.4",
"mkdirp": "*",
"np": "^7.5.0",
"react": "^17.0.1",
"rimraf": "2.x.x",
"rollup": "^2.40.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-loader": "^8.0.17",
"typescript": "^4.2.2"
},
"authors": [
"bySabi Files <> (https://github.com/bySabi)"
],
"maintainers": [
"xehpuk <> (https://github.com/xehpuk)",
"SeinopSys <> [@SeinopSys](https://github.com/SeinopSys)"
],
"license": "ISC",
"publishConfig": {
"access": "public"
},
"np": {
"releaseDraft": false
},
"lint-staged": {
"**/*": "eslint"
}
}