diff options
author | pacien | 2018-10-10 02:50:40 +0200 |
---|---|---|
committer | pacien | 2018-10-10 02:50:40 +0200 |
commit | a3807bf0fbc406dc336c8a07e4d4426a510c7249 (patch) | |
tree | 1f2990b621025bc5b35d44880bf1f685466cb7b8 /package.json | |
parent | a0beb9d8a9e67cbdd95492b1e118c794ce442819 (diff) | |
download | jacoco-viewer-a3807bf0fbc406dc336c8a07e4d4426a510c7249.tar.gz |
Bootstrap React app
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..bcd967e --- /dev/null +++ b/package.json | |||
@@ -0,0 +1,25 @@ | |||
1 | { | ||
2 | "name": "jacoco-report-viewer", | ||
3 | "version": "0.1.0", | ||
4 | "private": true, | ||
5 | "dependencies": { | ||
6 | "react": "^16.5.2", | ||
7 | "react-dom": "^16.5.2", | ||
8 | "react-scripts": "2.0.4" | ||
9 | }, | ||
10 | "scripts": { | ||
11 | "start": "react-scripts start", | ||
12 | "build": "react-scripts build", | ||
13 | "test": "react-scripts test", | ||
14 | "eject": "react-scripts eject" | ||
15 | }, | ||
16 | "eslintConfig": { | ||
17 | "extends": "react-app" | ||
18 | }, | ||
19 | "browserslist": [ | ||
20 | ">0.2%", | ||
21 | "not dead", | ||
22 | "not ie <= 11", | ||
23 | "not op_mini all" | ||
24 | ] | ||
25 | } | ||