-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
85 lines (85 loc) · 2.27 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
{
"name": "rsql-monorepo",
"version": "0.0.0",
"private": true,
"description": "RSQL compiler and parser for Node.js and Browsers",
"repository": "https://github.com/piotr-oles/rsql.git",
"license": "MIT",
"author": "Piotr Oleś <piotrek.oles@gmail.com>",
"engines": {
"node": ">= 8"
},
"scripts": {
"postinstall": "lerna bootstrap && cd patches/dts-bundle && yarn",
"build": "lerna run build",
"release": "auto shipit",
"precommit": "lint-staged && yarn build && yarn test",
"commit": "./node_modules/.bin/git-cz",
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"test:mutate": "stryker run"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn build && yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,yml,json,md,html,ts}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@auto-it/conventional-commits": "^9.26.8",
"@auto-it/first-time-contributor": "^9.26.8",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@stryker-mutator/core": "^3.1.0",
"@stryker-mutator/jest-runner": "^3.1.0",
"@stryker-mutator/typescript": "^3.1.0",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"auto": "^9.26.8",
"commitlint": "^8.3.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"git-cz": "^4.3.1",
"husky": "^4.2.5",
"jest": "^25.3.0",
"jest-haste-map": "^25.3.0",
"jest-resolve": "^25.3.0",
"lerna": "^3.20.2",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4",
"rollup": "^2.8.2",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"auto": {
"plugins": [
"npm",
"conventional-commits",
"first-time-contributor",
"released"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}