-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "http-assert-plus",
"version": "2.0.1",
"description": "More assertions with status codes",
"main": "./index.cjs",
"scripts": {
"docs:preview": "docker run --rm -it -v $PWD/docs:/srv/jekyll -p 4000:4000 jekyll/jekyll:4.2.0 jekyll serve",
"lint": "eslint --ext .cjs .",
"test": "nyc mocha",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"repository": "https://github.com/someimportantcompany/http-assert-plus",
"homepage": "https://someimportantcompany.github.io/http-assert-plus",
"bugs": "https://github.com/someimportantcompany/http-assert-plus/issues",
"author": "jdrydn <james@jdrydn.com> (https://jdrydn.com)",
"license": "MIT",
"files": [
"index.cjs",
"index.d.ts"
],
"keywords": [
"http",
"assert"
],
"devDependencies": {
"@babel/eslint-parser": "^7.21.8",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"eslint": "^8.40.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-sort-requires": "^2.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">= 16.0.0",
"npm": ">= 8.0.0"
},
"browserslist": [
"defaults",
"maintained node versions"
],
"mocha": {
"exit": true,
"require": [
"ts-node/register",
"source-map-support/register",
"tsconfig-paths/register"
],
"spec": [
"./test/*.test.ts"
],
"ui": "bdd"
},
"nyc": {
"extension:": [
".ts"
],
"exclude": [
"./*.d.ts",
"./*.test.ts"
],
"reporter": [
"lcov",
"text"
]
}
}