-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "si-releaser",
"version": "1.3.0",
"private": true,
"description": "Release Action for Simple Icons",
"license": "CC0-1.0",
"type": "module",
"exports": "./src/index.js",
"author": {
"name": "Eric Cornelissen",
"email": "[email protected]"
},
"scripts": {
"preview": "GITHUB_REPOSITORY=simple-icons/simple-icons node src/index.js",
"build": "del-cli lib && ncc build src/index.js -m -o lib && node scripts/fix-distribution-file.js",
"postbuild": "mv lib/index.js lib/index.mjs",
"format": "prettier --write .",
"lint": "prettier --check .",
"postinstall": "is-ci || husky",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"alpha-sort": "5.0.0",
"he": "^1.2.0",
"semver": "7.6.3"
},
"devDependencies": {
"@vercel/ncc": "0.38.3",
"del-cli": "^6.0.0",
"husky": "9.1.7",
"is-ci": "3.0.1",
"jest": "29.7.0",
"lodash": "4.17.21",
"prettier": "3.4.1"
},
"engines": {
"node": ">=20.0.0"
}
}