-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.65 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
{
"name": "@telia/rush-select",
"version": "0.13.1",
"author": "[email protected]",
"description": "A simple rush prompt to run multiple rush projects in one terminal.",
"bugs": {
"url": "https://github.com/TeliaSweden/rush-select/issues"
},
"homepage": "https://github.com/TeliaSweden/rush-select#readme",
"bin": {
"rush-select": "dist/index.js"
},
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "npm test && npm run build",
"build": "tsc",
"build:watch": "tsc -w",
"start": "tsc && node index.js",
"lint": "eslint . --ext .ts",
"debug": "tsc && cd mocks && node ../dist/index.js",
"test": "jest",
"test:watch": " FORCE_COLOR=true npm run test -- --watch --runInBand"
},
"devDependencies": {
"@types/hjson": "^2.4.2",
"@types/jest": "^26.0.15",
"@types/yargs": "^15.0.9",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-plugin-jest": "^24.1.0",
"husky": "^4.3.0",
"jest": "^26.6.1",
"lint-staged": "^10.5.0",
"prettier": "^2.1.2",
"pretty-quick": "^2.0.2",
"ts-jest": "^26.4.3"
},
"dependencies": {
"typescript": "^4.0.5",
"@lerna/child-process": "^3.13.3",
"ansi-colors": "^3.2.4",
"ansi-styles": "^4.3.0",
"enquirer": "^2.3.6",
"find-up": "^3.0.0",
"fuzzy": "^0.1.3",
"hjson": "^3.2.1",
"strip-ansi": "^6.0.0",
"yargs": "^15.4.1"
},
"license": "MIT",
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint . --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}