-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.55 KB
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
{
"author": {
"email": "mobilemind@pobox.com",
"name": "\"mobilemind\" Tom King",
"url": "https://mobilemind.net/"
},
"bin" : {
"text2datauri" : "bin/text2datauri.js"
},
"bugs": {
"url": "https://github.com/mobilemind/text2datauri/issues"
},
"description": "Convert a text file to a data URI in base64 or URI encoding. Standalone CLI, Node.js API, and grunt plugin.",
"devDependencies": {
"@eslint/js": "10.0.1",
"eslint": "10.5.0",
"eslint-plugin-n": "18.1.0",
"markdownlint-cli2": "0.22.1"
},
"engines": {
"node": ">=22.22.1",
"npm": ">=11.5.1"
},
"files": [
"bin/",
"tasks/",
"Gruntfile.js",
"LICENSE-MIT",
"README.md"
],
"homepage": "https://github.com/mobilemind/text2datauri",
"keywords": [
"base64",
"cli",
"data-uri",
"gruntplugin",
"uri-encode"
],
"license": "MIT",
"main": "tasks/text2datauriHelpers.js",
"name": "text2datauri",
"peerDependencies": {
"grunt": "1.6.1"
},
"peerDependenciesMeta" : {
"grunt" : {
"optional" : true
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/mobilemind/text2datauri.git"
},
"scripts": {
"test": "node --test test/text2datauri*.js",
"lint": "eslint .",
"lint:md": "markdownlint-cli2 '**/*.md' '#node_modules'",
"audit": "npm audit --omit=dev --audit-level=moderate",
"audit:fix": "npm audit fix --omit=dev"
},
"version": "1.13.4"
}