-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (40 loc) · 957 Bytes
/
package.json
File metadata and controls
42 lines (40 loc) · 957 Bytes
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
{
"name": "ncc",
"version": "3.0.0",
"description": "This action creates a single file for your nodejs module via vercel/ncc.",
"main": "index.cjs",
"type": "module",
"scripts": {
"lint": "eslint index.cjs",
"package": "ncc build index.cjs -o dist",
"test": "jest",
"build": "ncc build index.cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/sidey79/ncc.git"
},
"keywords": [
"github",
"ncc",
"continuous integration",
"distribution",
"vercel"
],
"author": "sidey79",
"license": "MIT",
"bugs": {
"url": "https://github.com/sidey79/ncc/issues"
},
"homepage": "https://github.com/sidey79/ncc#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@vercel/ncc": "0.38.4",
"eslint": "10.0.3",
"jest": "30.2.0"
}
}