-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "micro-test-runner",
"version": "2.0.0",
"description": "A minimal JavaScript test runner.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"test": "tsc --build tsconfig.test.json && node post-build.js ./test_build/src/index.js && node test_build/tests/index.js",
"build": "tsc --build tsconfig.json && node post-build.js ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gigabyte5671/micro-test-runner.git"
},
"keywords": [
"JavaScript",
"TypeScript",
"unit",
"test",
"test-runner",
"performance",
"minimal"
],
"author": {
"name": "Giga",
"url": "https://github.com/Gigabyte5671"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Gigabyte5671/micro-test-runner/issues"
},
"homepage": "https://github.com/Gigabyte5671/micro-test-runner#readme",
"funding": "https://github.com/sponsors/Gigabyte5671",
"devDependencies": {
"typescript": "^5.6.3"
}
}