-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.29 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
{
"name": "node-test-runner-examples",
"private": true,
"type": "module",
"scripts": {
"test": "node --test ./src/*.test.js",
"dev": "node --test --watch ./src/*.test.js",
"test:all": "npm run test:coverage && npm run test:only && npm run test:seq && npm run test:par",
"test:coverage": "node --test --experimental-test-coverage ./src/*.test.js",
"test:coverage:file": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info ./src/*.test.js",
"report:html": "npx @lcov-viewer/cli lcov -o ./coverage ./lcov.info",
"test:seq": "node --test --test-concurrency=1 ./src/*.test.js",
"test:par": "node --test --test-concurrency=5 ./src/*.test.js",
"test:only": "node --test --test-only src/*.only.js",
"test:failing": "node --test src/*.failing.js && echo 'Error: test run should fail' && exit 1 || echo 'Success: test run failed as expected' && exit 0",
"lint": "biome lint --apply ./src",
"format": "biome format --write ."
},
"license": "MIT",
"dependencies": {
"axios": "1.6.8",
"bcrypt": "5.1.1",
"express": "4.19.2",
"sequelize": "6.37.3",
"supertest": "7.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"esmock": "2.6.3",
"nock": "13.5.1",
"undici": "6.5.0"
}
}