-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.43 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
{
"name": "unitium",
"version": "0.5.0",
"description": "Class based unit testing for node & the browser",
"keywords": [
"test-runner",
"unit-testing",
"class-based",
"typescript"
],
"type": "module",
"types": "./distribution/index.d.ts",
"module": "./distribution/index.js",
"main": "./distribution/index.js",
"exports": {
".": {
"types": "./distribution/index.d.ts",
"import": "./distribution/index.js"
},
"./browser/*": "./distribution/browser/*",
"./node-api": "./distribution/node/api.js",
"./browser-api": "./distribution/browser/api.js"
},
"author": "Magnus Meseck",
"license": "MIT",
"bin": {
"unitium": "/distribution/node/index.js",
"unitium-tsx": "/distribution/node/exec-tsx.js",
"unitium-ts-node": "/distribution/node/exec-ts-node.js"
},
"scripts": {
"dry-update": "tsx npm-release.ts",
"patch": "tsx npm-release.ts && npm version patch && git push && npm publish",
"release": "tsx npm-release.ts && npm version minor && git push && npm publish",
"test": "tsx ./source/node/index.ts ./source",
"serve": "vite"
},
"devDependencies": {
"@types/node": "^17.0.6",
"uvu": "^0.5.6"
},
"dependencies": {
"deferium": "^0.1.1",
"fast-glob": "^3.2.7"
},
"repository": {
"type": "git",
"url": "https://github.com/elemental-mind/unitium.git"
},
"homepage": "https://github.com/elemental-mind/unitium#readme"
}