1 | {
|
2 | "name": "gts",
|
3 | "version": "6.0.0",
|
4 | "description": "Google TypeScript Style",
|
5 | "repository": "google/gts",
|
6 | "main": "build/src/index.js",
|
7 | "bin": {
|
8 | "gts": "build/src/cli.js"
|
9 | },
|
10 | "files": [
|
11 | "CHANGELOG.md",
|
12 | "build/src",
|
13 | "build/template",
|
14 | "build/.eslintrc.json",
|
15 | ".prettierrc.json",
|
16 | "tsconfig-google.json",
|
17 | "tsconfig.json",
|
18 | ".eslintrc.json"
|
19 | ],
|
20 | "scripts": {
|
21 | "build": "npm run compile",
|
22 | "clean": "rimraf ./build/",
|
23 | "compile": "tsc",
|
24 | "postcompile": "ncp template build/template",
|
25 | "lint": "eslint '**/*.ts'",
|
26 | "prepare": "npm run compile",
|
27 | "test": "c8 mocha build/test/test-*.js",
|
28 | "system-test": "c8 mocha build/test/kitchen.js",
|
29 | "pretest": "npm run compile",
|
30 | "presystem-test": "npm run compile",
|
31 | "license-check": "jsgl --local .",
|
32 | "fix": "eslint --fix '**/*.ts'"
|
33 | },
|
34 | "engines": {
|
35 | "node": ">=18"
|
36 | },
|
37 | "keywords": [
|
38 | "typescript",
|
39 | "linter",
|
40 | "formatter",
|
41 | "google"
|
42 | ],
|
43 | "author": "Google Inc.",
|
44 | "license": "Apache-2.0",
|
45 | "dependencies": {
|
46 | "@typescript-eslint/eslint-plugin": "5.62.0",
|
47 | "@typescript-eslint/parser": "5.62.0",
|
48 | "chalk": "^4.1.2",
|
49 | "eslint": "8.57.1",
|
50 | "eslint-config-prettier": "9.1.0",
|
51 | "eslint-plugin-n": "15.7.0",
|
52 | "eslint-plugin-prettier": "5.2.1",
|
53 | "execa": "^5.0.0",
|
54 | "inquirer": "^7.3.3",
|
55 | "json5": "^2.1.3",
|
56 | "meow": "^9.0.0",
|
57 | "ncp": "^2.0.0",
|
58 | "prettier": "3.3.3",
|
59 | "rimraf": "3.0.2",
|
60 | "write-file-atomic": "^4.0.0"
|
61 | },
|
62 | "devDependencies": {
|
63 | "@npm/types": "^2.0.0",
|
64 | "@types/cross-spawn": "^6.0.2",
|
65 | "@types/eslint": "^8.0.0",
|
66 | "@types/fs-extra": "^11.0.0",
|
67 | "@types/inquirer": "^8.0.0",
|
68 | "@types/json5": "2.2.0",
|
69 | "@types/mocha": "^10.0.0",
|
70 | "@types/ncp": "^2.0.4",
|
71 | "@types/node": "^22.7.5",
|
72 | "@types/rimraf": "^3.0.0",
|
73 | "@types/sinon": "^17.0.0",
|
74 | "@types/tmp": "^0.2.0",
|
75 | "@types/write-file-atomic": "^4.0.0",
|
76 | "c8": "^10.1.2",
|
77 | "cross-spawn": "^7.0.3",
|
78 | "fs-extra": "^11.0.0",
|
79 | "inline-fixtures": "^1.1.0",
|
80 | "js-green-licenses": "^4.0.0",
|
81 | "mocha": "^10.0.0",
|
82 | "sinon": "^17.0.0",
|
83 | "tmp": "0.2.3",
|
84 | "typescript": "^5.6.3"
|
85 | },
|
86 | "peerDependencies": {
|
87 | "typescript": ">=5.6.3"
|
88 | }
|
89 | }
|