-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
77 lines (77 loc) · 2.08 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
{
"name": "monorepo",
"private": "true",
"author": "Eyas Sharaiha <eyas@google.com> (https://eyas.sh/)",
"maintainers": [
"Eyas Sharaiha <npm@eyas.sh> (https://eyas.sh/)"
],
"devDependencies": {
"@jest/globals": "^29.7.0",
"@stylistic/eslint-plugin": "^4.1.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.3",
"jest": "^29.7.0",
"prettier": "^3.5.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2",
"typescript-eslint": "^8.25.0"
},
"overrides": {
"typescript-eslint": {
"typescript": "$typescript"
},
"@typescript-eslint/eslint-plugin": {
"typescript": "$typescript"
},
"@typescript-eslint/parser": {
"typescript": "$typescript"
}
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"engineStrict": true,
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"dist/**/*",
"coverage/**/*",
"test/**/*",
"src/cli/cli.ts"
],
"reporter": [
"html"
],
"all": true
},
"homepage": "https://opensource.google/projects/schema-dts",
"bugs": "https://github.com/google/schema-dts/issues",
"repository": "github:google/schema-dts",
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf \"packages/**/dist\" \"packages/**/*.tsbuildinfo\" packages/schema-dts/lib/*",
"build": "npm run build --workspaces",
"lint:prettier": "prettier --check .",
"lint:eslint": "npm run lint:eslint --workspaces --if-present --",
"lint": "npm run lint:eslint && npm run lint:prettier",
"fix:prettier": "prettier --write .",
"fix:eslint": "npm run lint:eslint -- --fix ",
"fix": "npm run fix:eslint && npm run fix:prettier",
"test": "npm run lint && npm run test --workspaces",
"coverage_on_travis": "npm run coverage_on_travis -w schema-dts-gen",
"pkg": "npm run clean && npm run build"
},
"type": "module",
"workspaces": [
"packages/schema-dts-gen",
"packages/schema-dts"
]
}