-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
96 lines (96 loc) · 2.15 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "commently-monorepo",
"version": "0.0.0",
"private": true,
"description": "Easily comment on github issues and PRs",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/intuit/commently.git"
},
"scripts": {
"clean": "rm -rf node_modules && rm -rf packages/**/dist && lerna clean --yes",
"test": "jest",
"lint": "eslint packages/**/*.ts",
"build": "lerna run --stream build",
"build:watch": "lerna run --parallel build -- -- --watch --preserveWatchOutput",
"release": "auto shipit"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@octokit/rest": "18.12.0",
"@types/jest": "24.9.1",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"auto": "9.61.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-xo": "0.27.2",
"eslint-plugin-jest": "23.20.0",
"husky": "3.1.0",
"jest": "24.9.0",
"lerna": "3.22.1",
"lint-staged": "9.5.0",
"prettier": "1.19.1",
"ts-jest": "24.3.0",
"typescript": "3.9.10"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/*.test.+(ts|tsx|js)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/.cache/"
],
"collectCoverageFrom": [
"!**/dist/**",
"!**/node_modules/**",
"!**/vendor/**",
"!**/*.d.ts",
"**/*.{ts,tsx}"
],
"globals": {
"test-jest": {
"tsConfig": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
]
},
"license": "MIT",
"dependencies": {
"@types/node": "10.14.22"
}
}