-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1021 Bytes
/
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
{
"name": "yall-scripts",
"version": "1.2.0",
"description": "Run several npm scripts in parallel or in sequence forwarding the options in a yarn-friendly manner",
"bin": {
"yall": "bin/yall.js"
},
"main": "lib/index.js",
"files": [
"bin",
"lib"
],
"engines": {
"node": ">= 10",
"yarn": ">= 1"
},
"scripts": {
"lint:bin": "eslint ./bin",
"lint:lib": "eslint ./lib",
"lint": "node ./bin/yall.js --parallel lint:*"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"picomatch": "^2.2.2"
},
"devDependencies": {
"eslint": "^7.20.0"
},
"keywords": [
"yarn",
"run",
"all",
"npm",
"script",
"task",
"parallel",
"concurrently",
"serial",
"sequence",
"sequential",
"spawn",
"cli",
"tool"
],
"repository": {
"type": "git",
"url": "https://github.com/dubbha/yall-scripts.git"
},
"homepage": "https://github.com/dubbha/yall-scripts",
"author": "Oleksiy Dubovyk",
"license": "MIT"
}