-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.18 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
{
"name": "symnode",
"version": "1.0.13",
"description": "Multiplatform cli tool for crating symbolic links",
"main": "index.js",
"type": "module",
"scripts": {
"changelog": "auto-changelog -p --template keepachangelog --commit-limit false && git add CHANGELOG.md",
"package": "npm pack --pack-destination releases",
"release": "npm-run-all syft changelog package",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"syft": "syft dir:./ --exclude ./dist --exclude ./docs --exclude ./sbom.json --output json --file ./sbom.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ElCapitanSponge/symnode.git"
},
"keywords": [
"filesystem",
"fs",
"symlink"
],
"author": "Andrew Brunker <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ElCapitanSponge/symnode/issues"
},
"homepage": "https://github.com/ElCapitanSponge/symnode#readme",
"devDependencies": {
"@types/node": "^20.11.30",
"auto-changelog": "^2.4.0",
"eslint": "^8.57.0",
"npm-run-all": "^4.1.5"
}
}