@ffflorian/jszip-cli 3.1.7 → 3.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/cli.js +0 -0
  3. package/package.json +8 -46
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # jszip-cli [![Build Status](https://github.com/ffflorian/jszip-cli/workflows/Build/badge.svg)](https://github.com/ffflorian/jszip-cli/actions/) [![npm version](https://img.shields.io/npm/v/@ffflorian/jszip-cli.svg?style=flat)](https://www.npmjs.com/package/@ffflorian/jszip-cli)
1
+ # jszip-cli [![npm version](https://img.shields.io/npm/v/@ffflorian/jszip-cli.svg?style=flat)](https://www.npmjs.com/package/@ffflorian/jszip-cli)
2
2
 
3
3
  A zip CLI based on [jszip](https://www.npmjs.com/package/jszip).
4
4
 
package/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -13,38 +13,11 @@
13
13
  },
14
14
  "description": "A zip CLI based on jszip.",
15
15
  "devDependencies": {
16
- "@evilmartians/lefthook": "1.2.8",
17
- "@ffflorian/eslint-config": "0.8.3",
18
- "@ffflorian/prettier-config": "0.1.4",
19
- "@ffflorian/semantic-release-config": "0.5.2",
20
- "@semantic-release/changelog": "6.0.2",
21
- "@semantic-release/git": "10.0.1",
22
16
  "@types/fs-extra": "11.0.1",
23
- "@types/jasmine": "4.3.1",
24
- "@types/node": "~18",
25
17
  "@types/progress": "2.0.5",
26
- "@typescript-eslint/eslint-plugin": "4.33.0",
27
- "@typescript-eslint/parser": "4.33.0",
28
- "babel-eslint": "10.1.0",
29
18
  "cross-env": "7.0.3",
30
- "eslint": "7.32.0",
31
- "eslint-config-prettier": "8.6.0",
32
- "eslint-plugin-import": "2.27.5",
33
- "eslint-plugin-jasmine": "4.1.3",
34
- "eslint-plugin-jsdoc": "39.7.5",
35
- "eslint-plugin-no-unsanitized": "4.0.2",
36
- "eslint-plugin-prettier": "4.2.1",
37
- "eslint-plugin-simple-import-sort": "10.0.0",
38
- "eslint-plugin-sort-keys-fix": "1.1.2",
39
- "eslint-plugin-typescript-sort-keys": "2.1.0",
40
- "eslint-plugin-unused-imports": "1.1.5",
41
- "jasmine": "4.5.0",
42
- "prettier": "2.8.3",
43
- "publish-flat": "1.4.1",
44
- "rimraf": "4.1.2",
45
- "semantic-release": "20.1.0",
46
19
  "true": "0.0.4",
47
- "ts-node": "10.9.1",
20
+ "rimraf": "4.1.2",
48
21
  "typescript": "4.9.5"
49
22
  },
50
23
  "engines": {
@@ -82,29 +55,18 @@
82
55
  "license": "GPL-3.0",
83
56
  "main": "index.js",
84
57
  "name": "@ffflorian/jszip-cli",
85
- "prettier": "@ffflorian/prettier-config",
86
- "release": {
87
- "extends": "@ffflorian/semantic-release-config"
58
+ "publishConfig": {
59
+ "directory": "flattened"
88
60
  },
89
- "repository": "https://github.com/ffflorian/jszip-cli.git",
61
+ "repository": "https://github.com/ffflorian/node-packages/tree/main/packages/jszip-cli",
90
62
  "scripts": {
91
63
  "build": "tsc",
92
64
  "clean": "rimraf dist",
93
65
  "dist": "yarn clean && yarn build",
94
- "flatten": "publish-flat -o flattened",
95
- "fix": "yarn fix:other && yarn fix:ts && yarn fix:ts:spec",
96
- "fix:other": "yarn prettier --write",
97
- "fix:ts": "yarn lint:ts --fix",
98
- "fix:ts:spec": "yarn lint:ts:spec --fix",
99
- "lint": "yarn lint:ts && yarn lint:ts:spec && yarn lint:other",
100
- "lint:other": "yarn prettier --list-different",
101
- "lint:ts": "eslint --ignore-path .gitignore --ext .ts src/",
102
- "lint:ts:spec": "eslint --ignore-path .gitignore --ext .ts --config .eslintrc.spec.json spec/",
103
- "postversion": "node ../node_modules/publish-flat/cli-copy.js -i package.json -o ../package.json version",
104
- "prettier": "prettier \"*.{json,md,yml}\"",
105
- "release": "semantic-release",
66
+ "flatten": "node ../publish-flat/dist/cli.js -o flattened",
67
+ "postversion": "node ../publish-flat/dist/cli-copy.js -o flattened/package.json version",
106
68
  "start": "cross-env NODE_DEBUG=\"jszip-cli/*\" ts-node src/cli.ts",
107
- "test": "ts-node -P tsconfig.jasmine.json node_modules/.bin/jasmine"
69
+ "test": "ts-node -P tsconfig.jasmine.json ../../node_modules/.bin/jasmine"
108
70
  },
109
- "version": "3.1.7"
71
+ "version": "3.1.8"
110
72
  }