blob: 793d6ba4f94a7f8ab9d88271a5b17cbba5694bbb [file] [log] [blame]
huaxing4d4f41c2020-03-11 09:50:37 +08001{
2 "name": "gui-pdp-monitoring",
3 "version": "0.0.2",
4 "description": "GUI for monitoring Pdps Statistics",
5 "main": "index.js",
6 "scripts": {
waynedunican81617922020-08-05 10:56:35 +01007 "test": "jest",
huaxing4d4f41c2020-03-11 09:50:37 +08008 "build": "webpack",
9 "start": "webpack-dev-server --open"
10 },
11 "author": "",
12 "devDependencies": {
13 "@babel/cli": "^7.8.4",
14 "@babel/core": "^7.8.7",
waynedunican81617922020-08-05 10:56:35 +010015 "@babel/preset-env": "^7.11.0",
huaxing4d4f41c2020-03-11 09:50:37 +080016 "babel-jest": "^25.1.0",
waynedunican81617922020-08-05 10:56:35 +010017 "jest": "^26.1.0",
18 "jest-sonar-reporter": "^2.0.0",
huaxing4d4f41c2020-03-11 09:50:37 +080019 "webpack": "^4.42.0",
20 "webpack-cli": "^3.3.11",
21 "webpack-dev-server": "^3.10.3"
22 },
23 "dependencies": {
24 "d3": "^3.5.17",
25 "jquery": "^3.4.1"
waynedunican81617922020-08-05 10:56:35 +010026 },
27 "jest": {
28 "collectCoverage": true,
waynedunican34d6d482020-08-19 16:56:32 +010029 "coverageDirectory": "../../../target/code-coverage",
waynedunican81617922020-08-05 10:56:35 +010030 "transform": {
31 "^.+\\.[t|j]sx?$": "babel-jest"
32 },
33 "testResultsProcessor": "jest-sonar-reporter"
34 },
35 "jestSonar": {
waynedunican34d6d482020-08-19 16:56:32 +010036 "reportPath": "../../../target/reports",
waynedunican81617922020-08-05 10:56:35 +010037 "reportFile": "test-reporter.xml",
38 "indent": 4,
39 "sonar56x": true
huaxing4d4f41c2020-03-11 09:50:37 +080040 }
41}