-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.37 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
{
"name": "@bepower/code-style",
"description": "BePower's code style (heavily inspired by Shopify's one)",
"license": "MIT",
"author": "Niccolò Olivieri Achille <niccolo.olivieri@bepower.com> (https://github.com/BePower)",
"homepage": "https://github.com/BePower/code-style",
"repository": {
"type": "git",
"url": "https://github.com/BePower/code-style.git"
},
"bugs": {
"url": "https://github.com/BePower/code-style/issues"
},
"version": "2.0.3",
"scripts": {
"format": "prettier --write \"**/*.{ts,json,md,yml}\"",
"lint": "eslint --fix .",
"check": "npm run format && npm run lint",
"prebuild": "rimraf -g packages/*/dist coverage",
"build": "tsc --build",
"postbuild": "npm run postbuild --workspaces --if-present",
"pretest": "npm run build",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"release": "npx auto shipit --verbose --message \"ci: :memo: Update CHANGELOG.md [skip ci]\""
},
"devDependencies": {
"@bepower/auto-config": "^10.0.2",
"@bepower/eslint-plugin": "^4.0.0",
"@bepower/prettier-config": "^5.0.0",
"@tsconfig/recommended": "^1.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"workspaces": [
"packages/*"
]
}