generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"name": "@byu-oit/github-action-package-json",
"version": "2.0.2",
"private": true,
"description": "Parses and outputs information from a package.json file",
"main": "dist/index.js",
"scripts": {
"build": "tsc && ncc build src/main.ts --out dist --minify && rimraf tmp",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"all": "npm run lint && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byu-oit/github-action-package-json.git"
},
"keywords": [
"actions",
"package",
"json",
"version",
"semver"
],
"author": "Brigham Young University",
"contributors": [
{
"name": "Spencer Tuft",
"email": "stuft2@byu.edu"
}
],
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.2.6",
"semver": "^7.3.5"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.4",
"@types/semver": "^7.3.4",
"@vercel/ncc": "^0.34.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"jest": "^29.2.1",
"js-yaml": "^4.0.0",
"ts-jest": "^29.0.3",
"typescript": "^4.1.3"
}
}