-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.07 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.07 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "codify-images",
"version": "3.0.11",
"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 <devon.f.powell@gmail.com>",
"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",
"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",
"lint": "run-s -s lint:git lint:js lint:md",
"lint:git": "commitlint --from origin/main --to HEAD",
"lint:js": "eslint",
"lint:md": "markdownlint . --ignore-path .gitignore",
"lint:pkg": "sort-package-json --check",
"pretest": "rimraf test/.temp/",
"test": "run-s -s lint test:unit",
"test:unit": "nyc mocha"
},
"dependencies": {
"chalk": "^4",
"commander": "^14",
"lodash.camelcase": "^4",
"mini-svg-data-uri": "^1",
"mkdirp": "^3"
},
"devDependencies": {
"@babel/cli": "^7",
"@babel/register": "^7",
"@commitlint/cli": "^20",
"@devpow112/babel-config": "^1",
"@devpow112/commitlint-config": "^2",
"@devpow112/eslint-config": "^4",
"@devpow112/semantic-release-config": "^4",
"@eslint/compat": "^2",
"chai": "^4",
"eslint": "^9",
"markdownlint-cli": "^0.48",
"mocha": "^11",
"npm-run-all": "^4",
"nyc": "^18",
"rimraf": "^6",
"semantic-release": "^25",
"sinon": "^21",
"sort-package-json": "^3"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}