-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.45 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
{
"name": "each-package",
"version": "0.10.92",
"description": "Run commands in each package folder starting with cwd skipping node_modules folders",
"keywords": [
"each",
"package",
"npm",
"install",
"test"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kmalakoff/each-package.git"
},
"license": "MIT",
"type": "module",
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"main": "dist/cjs/index.cjs",
"module": "dist/dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"bin": {
"ep": "./bin/cli.cjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"format": "biome check --write --unsafe src/ test/",
"test": "tsds test:node --no-timeouts",
"test:engines": "nvu engines npm test",
"version": "tsds version"
},
"dependencies": {
"cross-spawn-cb": "^2.1.22",
"exit": "^0.1.2",
"fs-iterator": "^5.2.24",
"getopts-compat": "^2.2.6",
"lodash.find": "^4.6.0",
"queue-cb": "^1.4.16",
"remove-bom-buffer": "^3.0.0",
"spawn-streaming": "^1.0.31",
"spawn-term": "^0.1.49",
"topological-sort-group": "^0.1.11"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"cr": "*",
"is-version": "*",
"pinkie-promise": "*"
},
"engines": {
"node": ">=0.8"
},
"tsds": {
"source": "src/index.ts"
}
}