forked from nrigaudiere/yarn-recursive
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.91 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
{
"name": "@softwareventures/yarn-recursive",
"version": "0.0.0-development",
"description": "Recursively run yarn in a folder. Fork of original with bug fixes, and performance and sanity patches.",
"keywords": [
"build",
"recursive",
"yarn"
],
"author": "Nicolas Rigaudière",
"contributors": [
"Daniel Cassidy <[email protected]>"
],
"homepage": "https://github.com/softwareventures/yarn-recursive",
"bugs": "https://github.com/softwareventures/yarn-recursive/issues",
"repository": "github:softwareventures/yarn-recursive",
"license": "MIT",
"scripts": {
"fix": "tsc --noEmit && tslint --fix --project .",
"lint": "tsc --noEmit && tslint --project .",
"prepare": "tsc",
"semantic-release": "semantic-release",
"test": "ava"
},
"main": "yarn-recursive.js",
"bin": {
"yarn-recursive": "yarn-recursive.js"
},
"sideEffects": [
"./yarn-recursive.js"
],
"engines": {
"node": "^14 || ^16 || >=18"
},
"dependencies": {
"@softwareventures/array": "6.1.0",
"@softwareventures/chain": "3.0.0",
"@softwareventures/nullable": "3.2.0",
"cli-color": "2.0.3",
"p-all": "4.0.0",
"p-series": "3.0.0",
"tslib": "2.8.1",
"yarn": "1.22.22"
},
"devDependencies": {
"@softwareventures/semantic-release-config": "4.1.0",
"@softwareventures/tsconfig": "7.3.0",
"@softwareventures/tslint-rules": "2.0.0",
"@types/cli-color": "2.0.6",
"@types/node": "14.18.63",
"ava": "5.3.1",
"cz-conventional-changelog": "3.3.0",
"semantic-release": "19.0.5",
"ts-node": "10.9.2",
"tslint": "6.1.3",
"typescript": "5.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"release": {
"extends": "@softwareventures/semantic-release-config"
}
}