-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.57 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "run-behind",
"description": "Run one command interactively in the foreground, while other commands run in the background.",
"license": "MIT",
"author": "Matthieu Gicquel",
"homepage": "https://github.com/matthieugicquel/run-behind#readme",
"repository": "github:matthieugicquel/run-behind",
"version": "0.0.3",
"files": [
"dist/run-behind"
],
"source": "src/main.ts",
"bin": "./dist/run-behind",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "./scripts/build && watchman-make -p 'src/**/*' 'scripts/**/*' --run './scripts/build'",
"build": "./scripts/build",
"install-dev": "./scripts/install-dev",
"lint": "eslint src --ext .js,.ts --cache",
"typecheck": "tsc --noEmit",
"commit": "node ./.build/run-behind.js git-cz 'yarn lint' 'yarn typecheck'",
"release": "release-it",
"postinstall": "patch-package",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"esbuild": "^0.13.4",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"execa": "^5.1.1",
"git-cz": "^4.7.6",
"kleur": "^4.1.4",
"ora": "^6.0.1",
"patch-package": "^6.4.7",
"pinst": "^2.1.6",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.4.1",
"release-it": "^14.11.6",
"typescript": "^4.4.3"
}
}