-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
62 lines (62 loc) · 2.05 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@pmoo/testy",
"version": "7.1.0",
"description": "A minimal testing framework, for educational purposes.",
"homepage": "https://ngarbezza.github.io/testy/",
"repository": {
"type": "git",
"url": "https://github.com/ngarbezza/testy"
},
"bugs": {
"url": "https://github.com/ngarbezza/testy/issues"
},
"engines": {
"node": ">= 18.*"
},
"type": "module",
"main": "lib/testy.js",
"scripts": {
"jsdoc": "npx [email protected] --package package.json --recurse lib/ --destination doc/jsdoc --configure config/jsdoc.json",
"see:jsdoc": "open doc/jsdoc/index.html",
"lint": "eslint --config config/eslint.config.js",
"lint:fix": "eslint --config config/eslint.config.js --fix",
"test": "bin/testy_cli.js",
"playground:run": "npm t tests/playground_test.js",
"playground:reset": "cp tests/playground_test.js.template tests/playground_test.js",
"playground:clear": "rm tests/playground_test.js",
"test:coverage": "npx [email protected] --reporter lcov --reporter text --report-dir reports/coverage npm test",
"see:coverage": "open reports/coverage/lcov-report/index.html",
"test:mutation": "npx @stryker-mutator/[email protected] run config/stryker.conf.json",
"test:mutation:ci": "npx @stryker-mutator/[email protected] run --reporters json,dashboard --inPlace config/stryker.conf.json",
"see:mutation": "open reports/mutation/mutation.html",
"see:dependencies": "npx madge -i testy-dependencies.png lib/ bin/",
"see:complexity": "npx code-complexity . --filter='lib/**' --sort=score",
"contributors:add": "npx all-contributors@latest add",
"contributors:generate": "npx all-contributors@latest generate"
},
"bin": {
"testy": "bin/testy_cli.js"
},
"files": [
"bin",
"lib"
],
"directories": {
"lib": "./lib"
},
"keywords": [
"unit-test",
"testing",
"tdd",
"simple",
"learning",
"teaching",
"oop"
],
"author": "Nahuel Garbezza <[email protected]>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0"
}
}