-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 980 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
{
"name": "scar",
"version": "2.3.4",
"description": "Test runner for Node.js and the browser.",
"homepage": "https://larsjung.de/scar/",
"author": "Lars Jung <[email protected]> (https://larsjung.de)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lrsjng/scar.git"
},
"scripts": {
"lint": "eslint .",
"test:mocha": "mocha test/mocha",
"test:scar": "node test",
"test": "npm run -s test:mocha && npm run -s test:scar",
"check": "npm run -s lint && npm run -s test",
"cover": "nyc --require @babel/register --reporter text --reporter html node test",
"build": "node ghu release",
"precommit": "npm run -s check && npm run -s build"
},
"main": "lib",
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/register": "7.25.9",
"eslint": "9.14.0",
"ghu": "0.28.5",
"globals": "15.12.0",
"mocha": "10.8.2",
"nyc": "17.1.0"
}
}