-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.34 KB
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
{
"name": "npm-pkg",
"description": "A GitHub Action for retrieving information from a package.json file.",
"version": "1.0.0",
"main": "src/index.ts",
"type": "module",
"scripts": {
"build": "rollup --config rollup.config.js",
"watch": "rollup --config rollup.config.js --watch",
"preversion": "npm run build && npm run test",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"prettier": "@elgato/prettier-config",
"keywords": [
"github-actions",
"npm",
"package"
],
"author": "GeekyEggo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GeekyEggo/npm-pkg"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@elgato/prettier-config": "^0.2.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@swc/jest": "^0.2.36",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/semver": "^7.5.8",
"jest": "^29.7.0",
"rollup": "^4.16.4",
"semver": "^7.6.0",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"zod": "^3.23.4"
}
}