This repository has been archived by the owner on Feb 5, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.86 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>",
"bin": {
"jszip-cli": "dist/cli.js"
},
"dependencies": {
"commander": "10.0.0",
"cosmiconfig": "8.0.0",
"fs-extra": "11.1.0",
"jszip": "3.10.1",
"logdown": "3.3.1",
"progress": "2.0.3"
},
"description": "A zip CLI based on jszip.",
"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/progress": "2.0.5",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-eslint": "10.1.0",
"cross-env": "7.0.3",
"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",
"publish-flat": "1.4.1",
"rimraf": "4.1.2",
"semantic-release": "20.1.0",
"true": "0.0.4",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"engines": {
"node": ">= 10.9"
},
"files": [
"dist"
],
"keywords": [
"cli",
"jszip",
"typescript",
"zip"
],
"license": "GPL-3.0",
"main": "dist/index.js",
"name": "@ffflorian/jszip-cli",
"prettier": "@ffflorian/prettier-config",
"release": {
"extends": "@ffflorian/semantic-release-config"
},
"repository": "https://github.com/ffflorian/jszip-cli.git",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"dist": "yarn clean && yarn build",
"flatten": "publish-flat -o flattened",
"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",
"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": "cross-env NODE_DEBUG=\"jszip-cli/*\" ts-node src/cli.ts",
"test": "ts-node -P tsconfig.jasmine.json node_modules/.bin/jasmine"
},
"version": "3.1.7"
}