-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.22 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.22 KB
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
{
"name": "yarn-plugin-echo-execute",
"version": "0.0.0",
"description": "Echoes a `package.json` script's commandline before Yarn executes it.",
"license": "Unlicense",
"author": "leaumar@mailbox.org",
"main": "sources/index.ts",
"scripts": {
"build": "run-s clean prettier eslint compile import",
"clean": "rimraf bundles",
"compile": "builder build plugin",
"cycle": "run-s compile import simulate",
"eslint": "eslint sources/**/*.ts",
"import": "yarn plugin import ./bundles/@yarnpkg/plugin-echo-execute.js",
"prettier": "prettier --write --list-different --ignore-unknown --ignore-path .gitignore . !.yarn",
"simulate": "echo \"I'm totally a script, believe me.\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.25.0",
"@typescript-eslint/parser": "4.25.0",
"@yarnpkg/builder": "2.1.3",
"@yarnpkg/core": "2.4.0",
"eslint": "7.27.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"npm-run-all": "4.1.5",
"prettier": "2.3.0",
"prettier-plugin-package": "1.3.0",
"rimraf": "3.0.2",
"typescript": "4.2.4"
}
}