-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.73 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
65
66
67
{
"name": "why-is-node-still-running",
"description": "Find out exactly why Node is still running.",
"version": "1.0.0",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/cheap-glitch/why-is-node-still-running.git"
},
"bugs": {
"url": "https://github.com/cheap-glitch/why-is-node-still-running/issues"
},
"author": "cheap glitch <[email protected]> (https://github.com/cheap-glitch)",
"homepage": "https://github.com/cheap-glitch/why-is-node-still-running#readme",
"keywords": [
"open-handles",
"call-stack",
"node-is-still-running-goddammit"
],
"main": "./build/index.min.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"coverage:collect": "jest --collectCoverage",
"coverage:upload": "coveralls < .coverage/lcov.info",
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"test": "jest --useStderr"
},
"eslintConfig": {
"extends": "@cheap-glitch/typescript",
"env": {
"es6": true,
"node": true
},
"overrides": [
{
"files": [
"test/*.test.ts"
],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off"
}
}
]
},
"jest": {
"preset": "ts-jest",
"coverageDirectory": ".coverage",
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/src/lib/format.ts"
]
},
"devDependencies": {
"@cheap-glitch/eslint-config-typescript": "^1.3.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"eslint": "^7.17.0",
"fetch-h2": "^2.5.1",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}