aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-vsts/package.json
blob: e5ec1196ec40f6a516ba2e427568a91815c801fc (plain)
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
  "name": "sonarqube-vsts",
  "version": "0.0.1",
  "description": "Quality Widget for VSTS",
  "repository": "SonarSource/sonarqube",
  "license": "LGPL-3.0",
  "private": true,
  "dependencies": {
    "babel-polyfill": "6.26.0",
    "classnames": "2.2.5",
    "lodash": "4.17.4",
    "react": "16.4.2",
    "react-dom": "16.4.2",
    "whatwg-fetch": "2.0.3"
  },
  "devDependencies": {
    "@types/classnames": "2.2.3",
    "@types/enzyme": "3.1.10",
    "@types/jest": "23.3.1",
    "@types/lodash": "4.14.102",
    "@types/react": "16.4.8",
    "@types/react-dom": "16.0.7",
    "autoprefixer": "7.1.6",
    "babel-core": "6.26.0",
    "babel-jest": "23.4.2",
    "babel-loader": "7.1.4",
    "babel-plugin-dynamic-import-node": "1.1.0",
    "babel-plugin-lodash": "3.3.2",
    "babel-plugin-syntax-dynamic-import": "6.18.0",
    "babel-plugin-transform-class-properties": "6.22.0",
    "babel-plugin-transform-object-rest-spread": "6.26.0",
    "babel-plugin-transform-react-constant-elements": "6.22.0",
    "babel-plugin-transform-react-jsx-self": "6.22.0",
    "babel-plugin-transform-react-jsx-source": "6.22.0",
    "babel-preset-env": "1.6.1",
    "babel-preset-react": "6.22.0",
    "chalk": "2.3.2",
    "clean-webpack-plugin": "0.1.19",
    "copy-webpack-plugin": "4.5.1",
    "css-loader": "0.28.11",
    "enzyme": "3.3.0",
    "enzyme-adapter-react-16": "1.1.1",
    "enzyme-to-json": "3.3.4",
    "escape-string-regexp": "1.0.5",
    "eslint": "4.19.1",
    "eslint-config-sonarqube": "0.1.0",
    "eslint-plugin-import": "2.11.0",
    "eslint-plugin-jsx-a11y": "6.0.3",
    "eslint-plugin-promise": "3.7.0",
    "eslint-plugin-react": "7.7.0",
    "eslint-plugin-sonarjs": "0.1.0",
    "html-webpack-plugin": "3.0.6",
    "jest": "23.4.2",
    "postcss-calc": "6.0.1",
    "postcss-custom-properties": "6.2.0",
    "postcss-loader": "2.1.1",
    "prettier": "1.14.0",
    "react-dev-utils": "5.0.0",
    "react-error-overlay": "1.0.7",
    "react-test-renderer": "16.4.2",
    "style-loader": "0.20.3",
    "ts-jest": "23.1.3",
    "ts-loader": "4.3.0",
    "typescript": "3.0.1",
    "typescript-eslint-parser": "18.0.0",
    "webpack": "4.1.1",
    "webpack-bundle-analyzer": "2.11.1",
    "webpack-dev-server": "3.1.1"
  },
  "scripts": {
    "start": "node scripts/start.js",
    "build": "node scripts/build.js",
    "test": "jest --passWithNoTests",
    "format": "prettier --write --list-different 'src/main/js/!(libs)/**/*.{js,ts,tsx,css}'",
    "format-check": "prettier --list-different 'src/main/js/!(libs)/**/*.{js,ts,tsx,css}'",
    "lint": "eslint --ext js,ts,tsx --quiet src/main/js",
    "lint-report": "eslint --ext js,ts,tsx -f json -o eslint-report.json src/main/js",
    "ts-check": "tsc --noEmit",
    "validate": "yarn lint && yarn ts-check && yarn format-check && yarn test",
    "validate-ci": "yarn lint-report && yarn ts-check && yarn format-check && yarn test"
  },
  "engines": {
    "node": ">=6"
  },
  "browserslist": [
    "last 3 Chrome versions",
    "last 3 Firefox versions",
    "last 3 Safari versions",
    "last 3 Edge versions",
    "IE 11"
  ],
  "jest": {
    "coverageDirectory": "<rootDir>/target/coverage",
    "coveragePathIgnorePatterns": [
      "<rootDir>/node_modules",
      "<rootDir>/tests"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "json"
    ],
    "moduleNameMapper": {
      "^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jest/FileStub.js",
      "^.+\\.css$": "<rootDir>/config/jest/CSSStub.js"
    },
    "setupFiles": [
      "<rootDir>/config/polyfills.js",
      "<rootDir>/config/jest/SetupTestEnvironment.js",
      "<rootDir>/config/jest/SetupEnzyme.js"
    ],
    "snapshotSerializers": [
      "enzyme-to-json/serializer"
    ],
    "testPathIgnorePatterns": [
      "<rootDir>/node_modules",
      "<rootDir>/src/main/webapp",
      "<rootDir>/scripts"
    ],
    "testRegex": "(/__tests__/.*|\\-test)\\.(ts|tsx|js)$",
    "transform": {
      "\\.js$": "babel-jest",
      "\\.(ts|tsx)$": "ts-jest"
    }
  },
  "prettier": {
    "jsxBracketSameLine": true,
    "printWidth": 100,
    "singleQuote": true
  }
}