-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.22 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
{
"name": "codify-images",
"version": "3.0.2",
"description": "Quick and easy tool for converting a set of images into inline JavaScript",
"keywords": [
"image",
"converter"
],
"homepage": "https://github.com/devpow112/codify-images#readme",
"bugs": {
"url": "https://github.com/devpow112/codify-images/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devpow112/codify-images.git"
},
"license": "MIT",
"author": "Devon Powell <[email protected]>",
"main": "dist/codify-images.js",
"bin": {
"codify-images": "dist/cli.js"
},
"directories": {
"test": "test"
},
"files": [
"dist/**/*.js"
],
"scripts": {
"prebuild": "rimraf dist/",
"build": "babel --verbose --out-dir dist src",
"lint": "run-s -s lint:git lint:js lint:md",
"lint:js": "eslint",
"lint:md": "markdownlint . --ignore-path .gitignore",
"lint:git": "commitlint --from origin/main --to HEAD",
"lint:pkg": "sort-package-json --check",
"fix": "run-s -s fix:js fix:md fix:pkg",
"fix:js": "npm run -s lint:js -- --fix",
"fix:md": "npm run -s lint:md -- --fix",
"fix:pkg": "npm pkg fix && sort-package-json",
"pretest": "rimraf test/.temp/",
"test": "run-s -s lint test:unit",
"test:unit": "nyc mocha"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^13.0.0",
"lodash.camelcase": "^4.3.0",
"mini-svg-data-uri": "^1.4.4",
"mkdirp": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/register": "^7.25.9",
"@commitlint/cli": "^19.6.1",
"@devpow112/babel-config": "^1.2.3",
"@devpow112/commitlint-config": "^2.0.3",
"@devpow112/eslint-config": "^3.0.3",
"@devpow112/semantic-release-config": "^3.0.0",
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"chai": "^4.5.0",
"eslint": "^9.18.0",
"markdownlint-cli": "^0.43.0",
"mocha": "^11.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.1",
"sinon": "^19.0.2",
"sort-package-json": "^2.14.0"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}