-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 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
{
"name": "async-cleanup",
"version": "1.0.0",
"description": "Asynchronous process cleanup for Node.js and Typescript",
"keywords": [
"async",
"cleanup",
"exit",
"process",
"signal"
],
"homepage": "https://github.com/trevorr/async-cleanup#readme",
"bugs": {
"url": "https://github.com/trevorr/async-cleanup/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trevorr/async-cleanup.git"
},
"license": "ISC",
"author": "Trevor Robinson",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"examples": "concurrently 'ts-node examples/readme.ts' 'ts-node examples/readme.ts' 'ts-node examples/readme.ts'",
"lint": "eslint src",
"lint:ci": "eslint src --format junit --output-file test-results/eslint/eslint.xml",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"prettier": "prettier --write src",
"test": "jest src",
"test:ci": "jest src --ci --runInBand --reporters=default --reporters=jest-junit"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.7.1",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"concurrently": "^7.3.0",
"eslint": "^8.21.0",
"jest": "^28.1.3",
"jest-junit": "^14.0.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"jest-junit": {
"outputDirectory": "test-results/junit",
"outputName": "junit.xml"
},
"prettier": {
"semi": true
}
}