-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
65 lines (65 loc) · 1.82 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
{
"name": "monorepo",
"private": "true",
"author": "Eyas Sharaiha <[email protected]> (https://eyas.sh/)",
"maintainers": [
"Eyas Sharaiha <[email protected]> (https://eyas.sh/)"
],
"devDependencies": {
"@jest/globals": "^29.4.3",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.0.0",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"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/*"
]
}