mime-bytes 0.3.7 → 0.3.9
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.
- package/README.md +3 -1
- package/package.json +8 -9
package/README.md
CHANGED
|
@@ -352,6 +352,8 @@ Contributions are welcome! Please feel free to submit a Pull Request. For major
|
|
|
352
352
|
3. Add tests for the new file type
|
|
353
353
|
4. Submit a PR with a description of the format
|
|
354
354
|
|
|
355
|
+
---
|
|
356
|
+
|
|
355
357
|
## Education and Tutorials
|
|
356
358
|
|
|
357
359
|
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
@@ -425,4 +427,4 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
425
427
|
|
|
426
428
|
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
|
427
429
|
|
|
428
|
-
No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
|
|
430
|
+
No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mime-bytes",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.9",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "Lightning-fast file type detection using magic bytes (file signatures) with a focus on stream processing and minimal memory usage",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"module": "esm/index.js",
|
|
8
8
|
"types": "index.d.ts",
|
|
9
9
|
"homepage": "https://github.com/launchql/launchql",
|
|
10
|
-
"license": "
|
|
10
|
+
"license": "MIT",
|
|
11
11
|
"publishConfig": {
|
|
12
12
|
"access": "public",
|
|
13
13
|
"directory": "dist"
|
|
@@ -20,19 +20,18 @@
|
|
|
20
20
|
"url": "https://github.com/launchql/launchql/issues"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
|
-
"
|
|
24
|
-
"clean": "rimraf dist/**",
|
|
23
|
+
"clean": "makage clean",
|
|
25
24
|
"prepack": "npm run build",
|
|
26
|
-
"build": "
|
|
27
|
-
"build:dev": "
|
|
25
|
+
"build": "makage build",
|
|
26
|
+
"build:dev": "makage build --dev",
|
|
28
27
|
"lint": "eslint . --fix",
|
|
29
28
|
"test": "jest",
|
|
30
29
|
"test:watch": "jest --watch"
|
|
31
30
|
},
|
|
32
31
|
"keywords": [],
|
|
33
32
|
"devDependencies": {
|
|
34
|
-
"
|
|
35
|
-
"
|
|
33
|
+
"glob": "^13.0.0",
|
|
34
|
+
"makage": "^0.1.6"
|
|
36
35
|
},
|
|
37
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "e4643c07b6a961b964bbb132308366fc549504a1"
|
|
38
37
|
}
|