forked from setup-actions-demo/test-setup-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.34 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
{
"name": "@setup-actions-demo/test-setup-node",
"version": "1.0.0",
"repository": "git+https://github.com/setup-actions-demo/test-setup-node.git",
"scripts": {
"build": "ncc build -o dist/setup src/setup-node.ts && ncc build -o dist/cache-save src/cache-save.ts",
"format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"",
"format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"",
"lint": "eslint --config ./.eslintrc.js \"**/*.ts\"",
"lint:fix": "eslint --config ./.eslintrc.js \"**/*.ts\" --fix",
"test": "jest --coverage",
"pre-checkin": "npm run format && npm run lint:fix && npm run build && npm test",
"publish:ci": "pnpm publish --no-git-checks"
},
"description": "",
"bugs": {
"url": "https://github.com/setup-actions-demo/test-setup-node/issues"
},
"dependencies": {
"accepts": "^1.3.8",
"array-flatten": "^3.0.0",
"body-parser": "^1.20.3",
"bytes": "^3.1.2",
"content-disposition": "^0.5.4",
"content-type": "^1.0.5",
"cookie": "^0.5.0",
"cookie-signature": "^1.0.7",
"debug": "^4.0.0",
"depd": "^2.0.0",
"destroy": "^1.1.0",
"ee-first": "^1.1.1",
"encodeurl": "^2.0.0",
"escape-html": "^1.0.3",
"etag": "^1.8.1",
"express": "^4.21.1",
"finalhandler": "^1.2.0",
"forwarded": "^0.2.0",
"fresh": "^0.5.2",
"http-errors": "^1.8.0",
"iconv-lite": "^0.6.0",
"inherits": "^2.0.4",
"ipaddr.js": "^2.2.0",
"media-typer": "^1.1.0",
"merge-descriptors": "^2.0.0",
"methods": "^1.1.2",
"mime": "^1.6.0",
"mime-db": "^1.51.0",
"mime-types": "^2.1.35",
"ms": "^2.1.2",
"negotiator": "^0.6.3",
"on-finished": "^2.4.0",
"parseurl": "^1.3.3",
"path-to-regexp": "^8.0.0",
"proxy-addr": "^2.0.7",
"qs": "^6.8.0",
"range-parser": "^1.2.1",
"raw-body": "^2.4.1",
"safe-buffer": "^5.2.1",
"safer-buffer": "^2.1.2",
"send": "^0.19.0",
"serve-static": "^1.15.0",
"setprototypeof": "^1.2.0",
"statuses": "^2.0.1",
"type-is": "^1.6.18",
"utils-merge": "^1.0.1",
"vary": "^1.1.2"
},
"author": "mahalakshmi-rekadi <[email protected]>",
"license": "ISC",
"main": "index.js",
"devDependencies": {
"@changesets/cli": "^2.27.9"
}
}