forked from gabergg/react-scrollable-anchor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.73 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
{
"name": "react-scrollable-anchor",
"version": "0.6.2",
"description": "Provide smooth scrolling anchors in React.",
"main": "lib/index.js",
"files": [
"lib",
"README.md"
],
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"watch": "babel src --out-dir lib --source-maps inline --watch",
"example": "cd example && npm i; npm run start",
"lint": "eslint src",
"test": "mocha --compilers js:babel/register --recursive src/**/*-test.js",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"react",
"reactjs",
"scroll",
"hash",
"scrollable",
"scrolling",
"anchor",
"anchors",
"single",
"page",
"app",
"static",
"site",
"jump"
],
"author": "Gabe G'Sell <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gabergg/react-scrollable-anchor.git"
},
"bugs": {
"url": "https://github.com/gabergg/react-scrollable-anchor/issues"
},
"homepage": "https://github.com/gabergg/react-scrollable-anchor",
"dependencies": {
"jump.js": "1.0.2",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"expect": "^1.13.4",
"mocha": "^2.2.5",
"rimraf": "^2.5.0"
}
}