-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1010 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1010 Bytes
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
{
"name": "@linus/testy",
"version": "1.3.0-rc1",
"description": "No fuss doctests for Node.js - test your @examples",
"main": "./src/index.js",
"files": [
"/src"
],
"type": "module",
"scripts": {
"test": "node --test && eslint . && tsc",
"doc": "jsdoc -c .jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linus/testy.git"
},
"keywords": [
"test",
"testing",
"tdd",
"bdd",
"jsdoc",
"doctest"
],
"author": "Linus Thiel",
"license": "ISC",
"bugs": {
"url": "https://github.com/linus/testy/issues"
},
"homepage": "https://github.com/linus/testy#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"jsdoc-api": "^8.1.1"
},
"devDependencies": {
"@types/node": "^24.10.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^51.4.1",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.7.1",
"typescript": "^5.9.3"
}
}