-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.2 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
{
"name": "each-package",
"version": "0.5.3",
"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@github.com:kmalakoff/each-package.git"
},
"license": "MIT",
"main": "dist/cjs/index.js",
"types": "dist/types/index.d.ts",
"bin": {
"ep": "./bin/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"deploy": "tsds deploy",
"format": "biome check --write --unsafe src/ test/",
"test": "tsds test:node --no-timeouts",
"test:engines": "nvu engines npm test",
"version": "tsds version"
},
"dependencies": {
"core-js": "^3.39.0",
"cross-spawn-cb": "^1.0.0",
"exit": "^0.1.2",
"fs-iterator": "^5.1.0",
"getopts-compat": "^2.2.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.9.2",
"cr": "^0.1.0",
"is-version": "^0.2.1",
"ts-dev-stack": "^0.15.8"
},
"engines": {
"node": ">=0.8"
},
"tsds": {
"source": "src/index.mjs",
"targets": [
"cjs"
]
}
}