-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
{
"name": "xv",
"version": "1.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 <typicode@gmail.com>",
"type": "module",
"bin": "./lib/bin.js",
"files": [
"lib",
"!lib/**/*.test.js",
"!lib/**/test.js"
],
"scripts": {
"test": "npm run build && node lib/bin.js lib",
"test:output": "npm run build && 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": "^2.0.0",
"@types/node": "^16.11.2",
"@typicode/eslint-config": "^0.1.2",
"del-cli": "^4.0.1",
"husky": "^7.0.4",
"typescript": "^4.4.4"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}