-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.65 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": "react-anchor-navigation",
"version": "0.2.7",
"description": "React lightweight library for anchor scrolling and navigation tied to URL hash.",
"main": "./dist/cjs/react-anchor-navigation.js",
"module": "./dist/esm/react-anchor-navigation.js",
"browser": {
"./dist/cjs/react-anchor-navigation.js": "./dist/umd/react-anchor-navigation.js"
},
"scripts": {
"lint": "tsc --noEmit",
"test": "yarn lint && yarn cypress:headless",
"build": "del dist && rollup -c",
"cypress": "cypress open",
"cypress:headless": "cypress run"
},
"files": [
"dist/",
"index.d.ts",
"src/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/koala-interactive/react-anchor-navigation.git"
},
"keywords": [
"react",
"anchor",
"hash",
"scrolling",
"navigation"
],
"author": "koala-interactive",
"license": "MIT",
"bugs": {
"url": "https://github.com/koala-interactive/react-anchor-navigation/issues"
},
"homepage": "https://github.com/koala-interactive/react-anchor-navigation#readme",
"peerDependencies": {
"react": ">=16.8.6"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-node-resolve": "^7.0.0",
"@types/node": "^13.5.0",
"@types/react": "^16.3.13",
"cypress": "^10.0.0",
"del-cli": "^3.0.0",
"react": "^16.8.6",
"rollup": "^1.30.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-size-snapshot": "^0.10.0",
"rollup-plugin-terser": "^5.2.0",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
}
}