-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "morepush",
"description": "A library for monorepo pre-push hooks to test changed project only.",
"version": "0.0.3",
"author": "KodeFox <hello@kodefox.com> (https://github.com/kodefox/)",
"repository": "github:kodefox/morepush",
"bin": {
"morepush": "dist/main.js"
},
"main": "dist/main.js",
"files": [
"/dist"
],
"scripts": {
"prepare": "yarn build",
"start": "node dist/main.js",
"build": "yarn test && yarn build-ts",
"watch-node": "nodemon dist/main.js",
"watch": "concurrently \"yarn watch-ts\" \"yarn watch-node\" ",
"build-ts": "tsc && chmod +x ./dist/main.js && rm -rf ./dist/helpers/__tests__",
"watch-ts": "tsc -w",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint --max-warnings 0 \"src/**/*.ts\"",
"typecheck": "tsc --noEmit -p .",
"jest": "jest --coverage",
"test": "yarn lint && yarn typecheck && yarn format:check && yarn jest"
},
"dependencies": {
"chalk": "^4.0.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/jest": "24.0.18",
"@types/node": "^13.13.5",
"@types/yargs": "^15.0.4",
"concurrently": "4.1.2",
"eslint": "6.7.2",
"eslint-config-kodefox": "0.0.2",
"jest": "24.9.0",
"nodemon": "1.19.1",
"pre-push": "0.1.1",
"prettier": "1.19.1",
"ts-jest": "24.0.2",
"typescript": "3.7.3"
},
"eslintConfig": {
"extends": "kodefox"
},
"prettier": {
"bracketSpacing": true,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"license": "MIT"
}