-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.33 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.33 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@pmoo/testy",
"version": "8.0.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": ">= 20.*"
},
"type": "module",
"main": "lib/testy.js",
"types": "dist/types/testy.d.ts",
"exports": {
".": {
"types": "./dist/types/testy.d.ts",
"import": "./lib/testy.js"
}
},
"files": [
"bin",
"lib",
"dist/types"
],
"scripts": {
"jsdoc": "npx jsdoc@latest --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 c8@latest --reporter lcov --reporter text --report-dir reports/coverage npm test",
"see:coverage": "open reports/coverage/lcov-report/index.html",
"test:mutation": "npx @stryker-mutator/core@latest run config/stryker.conf.json",
"test:mutation:ci": "npx @stryker-mutator/core@latest run --reporters json,dashboard --inPlace config/stryker.conf.json",
"see:mutation": "open reports/mutation/mutation.html",
"see:dependencies": "npx madge@latest -i reports/testy-dependencies.png lib/ bin/",
"see:complexity": "npx code-complexity@latest . --filter='lib/**' --sort=score",
"contributors:add": "npx all-contributors@latest add",
"contributors:generate": "npx all-contributors@latest generate",
"build:types": "tsc --project tsconfig.json"
},
"bin": {
"testy": "bin/testy_cli.js"
},
"directories": {
"lib": "./lib"
},
"keywords": [
"unit-test",
"testing",
"tdd",
"simple",
"learning",
"teaching",
"oop"
],
"author": "Nahuel Garbezza <n.garbezza@gmail.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.24.0",
"eslint": "^9.24.0"
},
"dependencies": {
"typescript": "^5.9.2"
}
}