-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
39
40
41
42
43
44
45
{
"name": "@efekos/es-test",
"version": "1.0.7",
"description": "Test runner for ES Modules",
"main": "bin/index.js",
"types": "bin/index.d.ts",
"scripts": {
"build": "node distDeletor.js && tsc",
"prebuild": "npm run lint",
"lint": "eslint ./src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/efekos/es-test.git"
},
"keywords": [
"es-test",
"test",
"test-runner",
"runner",
"testing"
],
"author": "efekos",
"license": "MIT",
"bugs": {
"url": "https://github.com/efekos/es-test/issues"
},
"homepage": "https://github.com/efekos/es-test#readme",
"type": "module",
"devDependencies": {
"@types/chai": "^4.3.17",
"@types/chalk": "^2.2.0",
"@types/node": "^20.14.15",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"chai": "^5.1.1"
},
"bin": {
"estest": "bin/index.js"
},
"dependencies": {
"chalk": "^5.3.0",
"log-update": "^6.1.0"
}
}