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
|
{
"name": "css-bundle",
"version": "1.0.0",
"description": "Simple node project to run stylelint from SonarCSS",
"main": "index.js",
"scripts": {
"build": "yarn install && yarn check-format && yarn clear && yarn compile",
"prepare-package": "rm -rf node_modules && yarn install --prod",
"clear": "tsc -b . --clean",
"compile": "tsc -b .",
"check-format": "prettier --list-different \"{src,tests}/**/*.ts\"",
"format": "prettier --write \"{src,tests}/**/*.ts\"",
"test": "jest"
},
"author": "",
"license": "LGPL-3.0",
"dependencies": {
"express": "4.17.1",
"stylelint": "10.1.0",
"body-parser": "1.18.3"
},
"devDependencies": {
"@types/express": "4.17.2",
"@types/jest": "23.3.2",
"@types/stylelint": "9.10.1",
"jest": "24.9.0",
"jest-sonar-reporter": "1.3.0",
"prettier": "1.19.1",
"ts-jest": "24.1.0",
"typescript": "3.7.3"
}
}
|