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 6
/
Copy pathpackage.json
88 lines (88 loc) · 2.28 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
{
"name": "react-reading-progress",
"version": "0.3.0",
"main": "./lib/index.js",
"author": "makotot",
"description": "react reading progress bar component",
"files": [
"README.md",
"lib/index.js",
"lib/throttle.js",
"package.json",
"webpack.config.babel.js",
".eslintrc"
],
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --inline --hot --color",
"build": "NODE_ENV=production ./node_modules/.bin/babel ./src/js/lib --out-dir ./lib",
"docs": "NODE_ENV=production webpack",
"test": "NODE_ENV=test ava __test__/*.js --verbose",
"prepublish": "yarn run build"
},
"browserlist": "last 3 versions",
"ava": {
"require": [
"babel-register"
],
"babel": {
"babelrc": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/makotot/react-reading-progress.git"
},
"license": "MIT",
"devDependencies": {
"autoprefixer": "^7.1.4",
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"browser-env": "^3.2.0",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"enzyme": "^2.9.1",
"eslint": "^4.7.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.3.0",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.5.3",
"normalize.css": "^7.0.0",
"postcss-loader": "^2.0.6",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-icons": "^2.2.5",
"react-test-renderer": "^15.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"system-font-css": "^2.0.1",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
},
"peerDependencies": {
"react": ">=0.15.0",
"react-dom": ">=0.15.0"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"prop-types": "^15.5.10",
"styled-components": "^2.2.2"
},
"keywords": [
"react",
"component",
"progress",
"reading",
"progressbar",
"scroll"
]
}