generated from vidhill/npm-package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.38 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
{
"name": "@vidhill/fortawesome-brands-11ty-shortcode",
"version": "1.1.0",
"description": "Eleventy shortcode to embedded fortawesome brand icons as inline svgs",
"main": "build/index.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"prebuild": "rimraf build/",
"build": "babel src -d build",
"dev": "watch 'pnpm run build' src",
"lint": "npm-run-all --parallel lint:*",
"lint-fix": "npm-run-all --parallel fix:*",
"lint:js": "eslint 'src/**/*.js' 'test-config/**/*.js'",
"fix:js": "pnpm run lint:js --fix",
"lint-md": "prettier \"**/*.md\"",
"fix:md": "pnpm run lint-md --write",
"lint:md": "pnpm run lint-md --check",
"pre-push": "npm-run-all lint test",
"prepublish": "pnpm run pre-push; pnpm run build",
"release": "np",
"prepare": "husky install"
},
"author": "David Hill",
"bugs": {
"url": "https://github.com/vidhill/fortawesome-brands-svg-11ty-shortcode/issues"
},
"homepage": "https://github.com/vidhill/fortawesome-brands-svg-11ty-shortcode#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vidhill/fortawesome-brands-svg-11ty-shortcode.git"
},
"keywords": [
"eleventy",
"shortcode",
"eleventy-plugin",
"fortawesome",
"fontawesome",
"svg",
"11ty"
],
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.14.3",
"@vitest/coverage-v8": "^2.1.1",
"babel-preset-latest-node": "^5.5.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-vidhill": "^4.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^6.0.0",
"jest-tobetype": "^1.2.3",
"np": "^10.0.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^3.0.2",
"vitest": "^2.1.1",
"watch": "^0.13.0"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@vidhill/fortawesome-11ty-shortcode-helper": "^1.1.0"
},
"engines": {
"node": ">=18.16.1"
},
"packageManager": "[email protected]"
}