-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "@sounisi5011/cli-utils-top-level-await",
"version": "1.1.3",
"description": "If the async function fails, set the process exit code to 1 and output the error to stderr",
"homepage": "https://github.com/sounisi5011/npm-packages/tree/main/packages/cli-utils/top-level-await-cli#readme",
"bugs": {
"url": "https://github.com/sounisi5011/npm-packages/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sounisi5011/npm-packages.git",
"directory": "packages/cli-utils/top-level-await-cli"
},
"license": "MIT",
"author": "sounisi5011",
"type": "commonjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/",
"src/",
"/CHANGELOG.md",
"!**/*.tsbuildinfo",
"!tsconfig.json"
],
"scripts": {
"build": "tsc -p ./src/",
"build-with-cache": "../../../scripts/fixed-turbo-run.sh build",
"lint:tsc": "run-p lint:tsc:*",
"lint:tsc:src": "tsc -p ./src/ --noEmit",
"lint:tsc:test": "tsc -p ./tests/ --noEmit",
"test": "run-if-supported --verbose run-p test:*",
"test:jest": "jest"
},
"devDependencies": {
"@sounisi5011/run-if-supported": "1.1.1",
"@swc/core": "1.3.25",
"@swc/jest": "0.2.24",
"@types/jest": "28.1.8",
"@types/node": "12.20.55",
"execa": "5.1.1",
"jest": "28.1.3",
"turbo": "1.8.2",
"typescript": "4.9.4"
},
"engines": {
"node": "^12.17.x || 14.x || 15.x || 16.x || 17.x || >=18.x"
}
}