forked from google/gts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.31 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "gts",
"version": "2.0.0",
"description": "Google TypeScript Style",
"repository": "google/gts",
"main": "build/src/index.js",
"bin": {
"gts": "build/src/cli.js"
},
"files": [
"CHANGELOG.md",
"build/src",
"build/template",
".prettierrc.json",
"tsconfig-google.json",
"tsconfig.json",
".eslintrc.json"
],
"scripts": {
"build": "npm run compile",
"clean": "rimraf ./build/",
"codecov": "c8 report --reporter=json && codecov -f coverage/*.json",
"compile": "tsc",
"postcompile": "ncp template build/template",
"lint": "eslint '**/*.ts'",
"prepare": "npm run compile",
"test": "c8 mocha build/test/test-*.js",
"system-test": "c8 mocha build/test/kitchen.js",
"pretest": "npm run compile",
"presystem-test": "npm run compile",
"license-check": "jsgl --local .",
"fix": "eslint --fix '**/*.ts'"
},
"engines": {
"node": ">=10"
},
"keywords": [],
"author": "Google Inc.",
"license": "Apache-2.0",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"chalk": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"execa": "^4.0.0",
"inquirer": "^7.1.0",
"meow": "^6.1.0",
"ncp": "^2.0.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"update-notifier": "^4.1.0",
"write-file-atomic": "^3.0.3"
},
"devDependencies": {
"@npm/types": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/cross-spawn": "^6.0.1",
"@types/eslint": "^6.8.0",
"@types/fs-extra": "^8.1.0",
"@types/inquirer": "^6.5.0",
"@types/mocha": "^7.0.2",
"@types/ncp": "^2.0.3",
"@types/node": "^13.11.1",
"@types/prettier": "^2.0.0",
"@types/rimraf": "^3.0.0",
"@types/sinon": "^9.0.0",
"@types/tmp": "^0.2.0",
"@types/update-notifier": "^4.1.0",
"@types/write-file-atomic": "^3.0.0",
"c8": "^7.1.0",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"cross-spawn": "^7.0.2",
"fs-extra": "^9.0.0",
"inline-fixtures": "^1.1.0",
"js-green-licenses": "^1.1.0",
"mocha": "^7.1.1",
"sinon": "^9.0.2",
"tmp": "0.2.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"typescript": "^3.0.0"
}
}