forked from ncolgan/react-scrollspy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.13 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.13 KB
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
{
"name": "react-scrollspy",
"version": "3.0.5",
"description": "react scrollspy component",
"main": "./lib/Scrollspy.js",
"files": [
"README.md",
"lib/Scrollspy.js",
"lib/throttle.js",
"package.json",
"webpack.config.babel.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"
},
"ava": {
"require": [
"babel-register"
],
"babel": {
"babelrc": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/makotot/react-scrollspy.git"
},
"author": "makotot",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.7.7",
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"construct-css": "https://github.com/makotot/construct.git",
"css-loader": "^0.28.0",
"cssnano": "^3.10.0",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-react": "^6.10.3",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"postcss-normalize": "^0.3.0",
"react-addons-perf": "^15.4.2",
"react-highlight": "^0.9.0",
"react-test-renderer": "^15.5.4",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.3"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"classnames": "^2.2.5",
"prop-types": "^15.5.8"
},
"keywords": [
"react",
"react-component",
"component",
"scrollspy",
"scroll"
]
}