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
/
package.json
97 lines (97 loc) · 3 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
91
92
93
94
95
96
97
{
"author": "Florian Imdahl <git@ffflorian.de>",
"bin": {
"electron-info": "dist/cli.js"
},
"dependencies": {
"axios": "1.3.1",
"chalk": "4.1.2",
"commander": "10.0.0",
"date-fns": "2.29.3",
"logdown": "3.3.1",
"parse-url": "8.1.0",
"semver": "7.3.8",
"table": "6.8.1"
},
"description": "Get useful data about Electron releases.",
"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/fs-extra": "11.0.1",
"@types/jasmine": "4.3.1",
"@types/node": "~18",
"@types/semver": "7.3.13",
"@types/uuid": "9.0.0",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.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",
"fs-extra": "11.1.0",
"http-status-codes": "2.2.0",
"jasmine": "4.5.0",
"nock": "13.3.0",
"prettier": "2.8.3",
"publish-flat": "1.4.1",
"rimraf": "4.1.2",
"semantic-release": "20.1.0",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"uuid": "9.0.0"
},
"engines": {
"node": ">= 10.9"
},
"files": [
"dist"
],
"keywords": [
"cli",
"info",
"electron",
"release",
"version",
"typescript"
],
"license": "GPL-3.0",
"main": "dist/index.js",
"name": "electron-info",
"prettier": "@ffflorian/prettier-config",
"release": {
"extends": "@ffflorian/semantic-release-config"
},
"repository": "https://github.com/ffflorian/electron-info.git",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"dist": "yarn clean && yarn build",
"fix": "yarn fix:other && yarn fix:ts && yarn fix:ts:spec",
"fix:other": "yarn prettier --write",
"fix:ts": "yarn lint:ts --fix",
"fix:ts:spec": "yarn lint:ts:spec --fix",
"flatten": "publish-flat -o flattened",
"lint": "yarn lint:other && yarn lint:ts && yarn lint:ts:spec",
"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 -d",
"test": "ts-node -P tsconfig.jasmine.json node_modules/.bin/jasmine"
},
"version": "1.17.4"
}