-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
64 lines (64 loc) · 1.65 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "xv",
"version": "2.1.1",
"description": "Modern and low maintenance test runner",
"keywords": [
"test",
"framework",
"lib",
"cli",
"runner",
"assert",
"jest",
"mocha",
"ava",
"tap",
"tape",
"async",
"await",
"typescript"
],
"homepage": "https://github.com/typicode/xv#readme",
"bugs": {
"url": "https://github.com/typicode/xv/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typicode/xv.git"
},
"funding": "https://github.com/sponsors/typicode",
"license": "MIT",
"author": "Typicode <[email protected]>",
"type": "module",
"bin": "./lib/bin.js",
"files": [
"lib",
"!lib/**/*.test.js",
"!lib/**/test.js"
],
"scripts": {
"test": "npm run build && npm run test:js && npm run test:js:no-param && npm run test:ts && npm run test:ts:no-param",
"test:js": "node lib/bin.js lib",
"test:js:no-param": "cd lib && node bin.js",
"test:ts": "node lib/bin.js --loader=ts-node/esm src",
"test:ts:no-param": "cd src && node ../lib/bin.js --loader=ts-node/esm",
"test:output": "node lib/bin.js output.js",
"lint": "eslint src --ext .ts --ignore-path .gitignore",
"build": "del-cli lib && tsc",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"postversion": "git push && git push --tags && npm publish"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@types/node": "^18.11.12",
"@typicode/eslint-config": "^1.1.0",
"del-cli": "^5.0.0",
"husky": "^8.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=14.16"
}
}