-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 926 Bytes
/
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
{
"name": "testrunner",
"version": "1.0.0",
"description": "NodeJS native test runner template",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"lint": "eslint 'tests/**/*.cjs'",
"lint:fix": "eslint 'tests/**/*.cjs' --fix",
"format": "prettier --write 'tests/**/*.cjs'",
"test:all": "npm run test:unit && npm run test:integration",
"test:unit": "node --test tests/unit/*.cjs",
"test:integration": "node --test tests/integration/**/*.cjs",
"test:watch": "node --test --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.5",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"undici": "^6.20.1"
},
"devDependencies": {
"eslint": "^9.13.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3"
}
}