-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
104 lines (104 loc) · 2.48 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
98
99
100
101
102
103
104
{
"name": "datauri-build",
"private": true,
"version": "4.1.0",
"scripts": {
"test": "npm run prettier:check && npm run lint && npm run build && npm run jest",
"jest": "jest",
"lint": "eslint src",
"clean-deps": "rm -rf node_modules",
"clean": "rm -rf lib",
"build": "npm run clean && tsc && npm run pkg-json",
"postbuild": "chmod +x lib/datauri-cli/index.js",
"pkg-json": "mkdir -p lib/datauri && mkdir -p lib/datauri-cli && node tools/pkg-json.js",
"release": "npm run build && npm publish lib/datauri-cli && npm publish lib/datauri",
"preversion": "npm run test",
"postversion": "git commit --amend -a && npm run build",
"prettier:check": "prettier --check 'src/**/*.ts'",
"prettier:fix": "prettier --write 'src/**/*.ts'"
},
"maintainers": [
{
"name": "Helder Santana",
"email": "[email protected]",
"url": "http://heldr.com"
},
{
"name": "Ruy Adorno",
"url": "http://ruyadorno.com"
},
{
"name": "Caio Gondim",
"email": "[email protected]",
"url": "https://caiogondim.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/data-uri/datauri.git"
},
"engines": {
"node": ">= 10"
},
"keywords": [
"datauri",
"data uri",
"data",
"uri",
"data-uri",
"optimization",
"uri",
"optimize",
"inline",
"png",
"jpg",
"woff",
"base64"
],
"author": "Helder Santana",
"license": "MIT",
"devDependencies": {
"@types/copy-paste": "^1.1.30",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"copy-paste": "1.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"fs-extra": "^10.0.0",
"image-size": "1.0.0",
"jest": "^27.0.6",
"mimer": "^2.0.2",
"minimist": "1.2.5",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"config": {
"blanket": {
"pattern": "datauri/lib/"
}
},
"datauri-build": {
"datauri": {
"dependencies": [
"image-size",
"mimer"
],
"description": "Create DataURI scheme easily"
},
"datauri-cli": {
"dependencies": [
"minimist",
"copy-paste"
],
"bin": {
"datauri": "./index.js"
},
"description": "Create DataURI scheme using terminal"
}
}
}