-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1 KB
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
{
"private": true,
"type": "module",
"name": "@sourcetoad/base-template-configs",
"description": "Linting configs for projects to create a copy from or work from.",
"license": "proprietary",
"homepage": "https://github.com/sourcetoad/base-template-configs#README.md",
"repository": {
"url": "https://github.com/sourcetoad/base-template-configs.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/sourcetoad/base-template-configs/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "npm run lint:es6 && npm run lint:vue && npm run lint:prettier",
"lint:es6": "npm -w packages/es6 run lint",
"lint:vue": "npm -w packages/vue run lint",
"lint:prettier": "npm -w packages/prettier run lint",
"test": "vitest"
},
"devDependencies": {
"@types/node": "^22.4.1",
"eslint": "^10.0",
"typescript": "^5.5.4",
"vitest": "^3.1.1"
}
}