forked from twurple/twurple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"workspaces": [
"packages/*"
],
"private": true,
"name": "twurple-workspace",
"repository": "github:twurple/twurple",
"author": "Daniel Fischer <[email protected]>",
"license": "MIT",
"devDependencies": {
"@d-fischer/documen.ts": "^0.16.0-pre.4",
"@d-fischer/eslint-config": "^6.1.5",
"@types/jest": "^27.4.1",
"@types/node": "^12.12.47",
"cross-env": "^7.0.3",
"crowd": "^0.1.5",
"eslint": "^8.12.0",
"husky": "^4.3.6",
"jest": "^27.5.1",
"jest-environment-node": "^27.5.1",
"lint-staged": "^11.2.6",
"prettier": "^2.2.1",
"rimraf": "^3.0.0",
"ts-jest": "^27.1.4",
"tsukuru": "^0.8.0-pre.8",
"typescript": "~4.8"
},
"scripts": {
"lint": "eslint --ext js,ts packages",
"prettier:check": "prettier --check \"packages/**\"",
"prettier:fix": "prettier --write \"packages/**\"",
"build": "tsukuru",
"rebuild": "tsukuru --clean",
"docs": "documen.ts",
"test": "jest",
"preversion": "yarn build && yarn lint && yarn prettier:check",
"prepublishOnly": "yarn build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css,json,md}": "prettier --write",
"*.{js,ts}": "eslint --fix"
}
}