-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
39 lines (39 loc) · 1.57 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
{
"name": "site-studio",
"version": "1.0.0",
"description": "Site Studio",
"main": "",
"engines": {
"node": ">=20.0.0"
},
"directories": {
"test": "tests"
},
"scripts": {
"install:dev": "yarn",
"install:prod": "yarn install --production --frozen-lockfile",
"coverage:clean": "rm -rf .nyc_output && rm -rf coverage",
"report:scss-gateway": "nyc mocha --reporter mocha-sonarqube-reporter --recursive ./cohesion-services/scss-gateway/node/test/**/*.test.js --reporter-options output=./coverage/scss-gateway/test-report.xml --extension .js --exit",
"coverage:scss-gateway": "nyc report --reporter=lcov --reporter=text --report-dir=./coverage/scss-gateway",
"report:dx8-gateway": "nyc mocha --reporter mocha-sonarqube-reporter --recursive ./cohesion-services/dx8-gateway/node/app/test/**/*.test.js --reporter-options output=./coverage/dx8-gateway/test-report.xml --extension .js --exit",
"coverage:dx8-gateway": "nyc report --reporter=lcov --reporter=text --report-dir=./coverage/dx8-gateway"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acquia/cohesion-dev.git"
},
"author": "Acquia Engineering <[email protected]>",
"bugs": {
"url": "https://github.com/acquia/cohesion-dev/issues"
},
"homepage": "https://github.com/acquia/cohesion-dev#readme",
"devDependencies": {
"coveralls": "^3.1.0",
"mocha": "^8.0.1",
"mocha-sonarqube-reporter": "^1.0.2",
"nyc": "^15.1.0",
"serverless-mocha-plugin": "^1.3.6",
"serverless-tag-cloud-watch-log-groups": "^1.2.5"
},
"dependencies": {}
}