-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
70 lines (70 loc) · 1.96 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
{
"name": "react-lighthouse-viewer",
"version": "6.0.3",
"description": "A React component used for rendering Lighthouse JSON reports.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development",
"transpile": "./node_modules/.bin/babel src -d dist --copy-files",
"prepublishOnly": "yarn transpile",
"build": "webpack --mode production",
"deploy": "gh-pages -d example/dist",
"publish-demo": "yarn prepublishOnly && yarn build && yarn deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blencorp/react-lighthouse-viewer.git"
},
"keywords": [
"lighthouse",
"viewer",
"react"
],
"author": "Naod Yeheyes <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/blencorp/react-lighthouse-viewer/issues"
},
"homepage": "https://github.com/blencorp/react-lighthouse-viewer#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"astroturf": "^0.10.4",
"autoprefixer": "^9.8.4",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"cjs-to-es6": "^1.1.1",
"css-loader": "^3.6.0",
"extract-text-webpack-plugin": "^3.0.2",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {}
}