-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
74 lines (74 loc) · 2.27 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
{
"name": "jmh-visualizer",
"version": "0.9.6",
"description": "Visualize the results of your JMH benchmarks execution",
"main": "index.jsx",
"scripts": {
"watch": "webpack -d --watch",
"build": "webpack --mode development",
"lint": "eslint . --ext .js --ext .jsx --cache",
"test": "NODE_ENV=testing NODE_PATH=./src/javascript mocha --compilers js:babel-core/register test --recursive",
"check": "npm run lint && npm run test",
"release-build": "rm -rf build/* && NODE_ENV=production webpack --mode production",
"release": "npm run check && npm run release-build",
"deploy": "npm run release && cp -r build/* docs/",
"providedZip": "npm run release && cd build && zip -r ../jmh-visualizer.zip ./*"
},
"keywords": [
"JMH",
"visualize",
"visualization",
"benchmark",
"report"
],
"author": "Johannes Zillmann",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/jzillmann/jmh-visualizer"
},
"dependencies": {
"@appigram/react-rangeslider": "^2.2.9",
"bootstrap": "^3.4.1",
"core-js": "^2.6.9",
"d3-scale-chromatic": "^1.3.3",
"history": "^4.7.2",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.8.6",
"react-dropzone": "^3.13.4",
"react-icons": "^2.2.7",
"react-overlays": "^0.8.3",
"react-scroll": "^1.8.1",
"react-spinkit": "^3.0.0",
"react-toggle": "^4.0.2",
"react-tooltip": "^4.2.15",
"react-waterfall": "^4.0.0",
"recharts": "^1.3.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^3.5.0",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^0.25.0",
"esformatter-jsx": "^7.0.1",
"eslint": "^5.16.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-react": "^7.14.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"style-loader": "^0.21.0",
"url-loader": "^1.1.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6"
}
}