-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
98 lines (98 loc) · 2.34 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "mktemp",
"description": "mktemp command for node.js",
"version": "1.0.1",
"author": "sasa+1 <[email protected]>",
"contributors": [
"Michael Ficarra <[email protected]>",
"rjz <[email protected]>"
],
"devDependencies": {
"@tsconfig/strictest": "^2.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.3",
"@types/sinon": "^10.0.14",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-tsdoc": "^0.2.17",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"sinon": "^15.0.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=8.3",
"npm": ">=8"
},
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist"
],
"license": "MIT",
"main": "./dist/cjs/index.js",
"mocha": {
"extension": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
],
"spec": [
"src/*.test.ts"
],
"watch-files": [
"src/*.ts"
]
},
"module": "./dist/esm/index.js",
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"overrides": [
{
"files": "*.json",
"options": {
"parser": "json-stringify"
}
}
]
},
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/sasaplus1/mktemp.git"
},
"scripts": {
"build": "run-p --print-label build:*",
"build:cjs": "tsc -p .tsconfigs/cjs.json",
"build:esm": "tsc -p .tsconfigs/esm.json",
"fix": "run-p --print-label fix:*",
"fix:eslint": "eslint --fix .",
"fix:fixpack": "npx fixpack",
"fix:prettier": "prettier --write .",
"lint": "run-p --print-label lint:*",
"lint:eslint": "eslint .",
"lint:fixpack": "npx fixpack --dryRun",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"test": "TS_NODE_PROJECT=.tsconfigs/test.json mocha"
},
"sideEffects": false,
"types": "./dist/cjs/index.js"
}