This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.92 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
{
"name": "niv-dep-info-action",
"version": "2.0.8",
"private": true,
"description": "Get information about niv dependencies",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"package": "ncc build --no-source-map-register --license licenses.txt --target es2019",
"all": "npm run build && npm run format && npm run lint && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cpcloud/niv-dep-info-action.git"
},
"keywords": [
"actions",
"node",
"setup",
"git",
"github",
"niv",
"dependencies",
"nix"
],
"author": "Phillip Cloud <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "1.10.0",
"tunnel": "0.0.6"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.2",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/eslint": "8.4.10",
"@types/node": "18.11.11",
"@typescript-eslint/eslint-plugin": "5.45.1",
"@typescript-eslint/parser": "5.45.1",
"@vercel/ncc": "0.36.0",
"eslint": "8.29.0",
"eslint-plugin-github": "4.4.1",
"js-yaml": "4.1.0",
"prettier": "2.8.0",
"semantic-release": "19.0.5",
"typescript": "4.9.3"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"dist/*",
"package.json",
"package-lock.json"
]
}
]
]
}
}