-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "section-tests",
"version": "4.1.4",
"description": "TDD for node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && cp -r src/lib/*.js dist/src/lib/",
"prepublishOnly": "npm run build",
"test": "npm run build && node dist/bin/run.js dist/test/main.js",
"test:watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/distributed-systems/section-tests.git"
},
"keywords": [
"tdd",
"test",
"async",
"await",
"unit-test"
],
"author": "Lina van der Weg",
"license": "MIT",
"bugs": {
"url": "https://github.com/distributed-systems/section-tests/issues"
},
"homepage": "https://github.com/distributed-systems/section-tests#readme",
"dependencies": {
"@distributed-systems/callsite": "^4.0.0",
"@distributed-systems/glob": "^3.0.0",
"@distributed-systems/types": "^3.0.0"
},
"bin": {
"section": "./dist/bin/run-npm.js"
},
"type": "module",
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/node": "^24.9.1",
"ee-log": "^3.0.9",
"typescript": "^5.9.3"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}