This repository has been archived by the owner on Feb 5, 2023. It is now read-only.
generated from ffflorian/ts-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.9 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
89
90
{
"author": "Florian Imdahl <git@ffflorian.de>",
"dependencies": {
"jszip": "3.10.1",
"protobufjs": "7.2.0"
},
"description": "Temporary Exposure Keys (TEK) library",
"devDependencies": {
"@evilmartians/lefthook": "1.2.8",
"@ffflorian/eslint-config": "0.8.3",
"@ffflorian/prettier-config": "0.1.4",
"@ffflorian/semantic-release-config": "0.5.2",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"@types/jasmine": "4.3.1",
"@types/node": "~18",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jasmine": "4.1.3",
"eslint-plugin-jsdoc": "39.7.5",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"eslint-plugin-unused-imports": "1.1.5",
"jasmine": "4.5.0",
"prettier": "2.8.3",
"protobufjs-cli": "1.1.0",
"publish-flat": "1.4.1",
"rimraf": "4.1.2",
"semantic-release": "20.1.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"engines": {
"node": ">= 10.9"
},
"files": [
"dist",
"proto/export.js",
"proto/export.d.ts"
],
"keywords": [
"tek",
"temporary",
"exposure",
"keys",
"google",
"apple",
"corona",
"covid",
"covid19",
"covid-19",
"typescript"
],
"license": "GPL-3.0",
"main": "dist/index.js",
"name": "exposure-keys",
"prettier": "@ffflorian/prettier-config",
"release": {
"extends": "@ffflorian/semantic-release-config"
},
"repository": "https://github.com/ffflorian/exposure-keys.git",
"scripts": {
"build": "yarn build:proto && yarn build:ts",
"build:proto": "pbjs --t static-module -w commonjs -o proto/export.js proto/export.proto && pbts --out proto/export.d.ts --no-comments proto/export.js",
"build:ts": "tsc",
"clean": "rimraf dist",
"dist": "yarn clean && yarn build",
"fix": "yarn fix:other && yarn fix:ts",
"fix:other": "yarn prettier --write",
"fix:ts": "yarn lint:ts --fix",
"flatten": "publish-flat -o flattened",
"lint": "yarn lint:ts && yarn lint:ts:spec && yarn lint:other",
"lint:other": "yarn prettier --list-different",
"lint:ts": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:ts:spec": "eslint --ignore-path .gitignore --ext .ts --config .eslintrc.spec.json spec/",
"postversion": "node ../node_modules/publish-flat/cli-copy.js -i package.json -o ../package.json version",
"prettier": "prettier \"*.{json,md,yml}\"",
"release": "semantic-release",
"start": "ts-node src/cli.ts",
"test": "ts-node -P tsconfig.jasmine.json node_modules/.bin/jasmine"
},
"version": "1.3.1"
}