This repository has been archived by the owner on Aug 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
91 lines (91 loc) · 2.34 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
84
85
86
87
88
89
90
91
{
"name": "react-scrollspy",
"version": "3.4.3",
"description": "react scrollspy component",
"main": "./lib/scrollspy.js",
"files": [
"README.md",
"lib/scrollspy.js",
"lib/throttle.js",
"package.json",
"webpack.config.js",
".eslintrc"
],
"scripts": {
"serve": "NODE_ENV=development webpack-dev-server --inline --hot --color",
"docs": "NODE_ENV=production webpack",
"build": "NODE_ENV=production ./node_modules/.bin/babel ./src/js/lib --out-dir ./lib",
"test": "NODE_ENV=test ./node_modules/.bin/ava __test__/*.js --verbose",
"prepublish": "yarn run build",
"deploy": "yarn run docs && gh-pages -d ./dist",
"release": "standard-version"
},
"ava": {
"require": [
"@babel/register"
]
},
"standard-version": {
"skip": {
"tag": true,
"bump": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/makotot/react-scrollspy.git"
},
"author": "makotot",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.4",
"autoprefixer": "^9.4.10",
"ava": "^1.3.1",
"babel-eslint": "^8.0.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"enzyme": "^2.9.1",
"eslint": "^4.6.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-react": "^7.12.4",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.0",
"normalize.css": "^8.0.1",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"react-addons-perf": "^15.4.2",
"react-highlight": "^0.10.0",
"react-test-renderer": "^15.6.1",
"sass-loader": "^7.1.0",
"standard-version": "^5.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"classnames": "^2.2.5",
"prop-types": "^15.5.10"
},
"keywords": [
"react",
"react-component",
"component",
"scrollspy",
"scroll"
]
}