-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.02 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": "github-actions",
"version": "0.9.0",
"private": false,
"description": "CLI tool to install and update GitHub Actions",
"type": "module",
"exports": "./lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf dist/* lib/* && tsc",
"dev": "ts-node src/index.ts",
"test": "jest",
"test-cov": "jest --coverage",
"workflows": "ts-node ./validator.ts",
"lint": "eslint src/**/*.ts --cache",
"format": "eslint src/**/*.ts --cache --fix",
"uglify": "uglifyjs dist/index.js -cm > dist/index.min.js && rm dist/index.js && mv dist/index.min.js dist/index.js"
},
"bin": {
"ghactions": "bin/ghactions.js"
},
"files": [
"lib/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vemel/github_actions_js.git"
},
"keywords": [
"actions",
"node",
"version",
"pep440",
"semver"
],
"author": "Vlad Emelianov",
"license": "MIT",
"dependencies": {
"chalk": "^5.2.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^7.0.1",
"configstore": "^6.0.0",
"deep-equal": "^2.0.5",
"diff": "^5.0.0",
"inquirer": "^9.1.5",
"inquirer-select-directory": "^1.2.0",
"js-yaml": "^4.0.0",
"node-fetch": "^3.3.1"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/deep-equal": "^1.0.1",
"@types/diff": "^5.0.0",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.0",
"@types/node": "^18.15.11",
"@types/node-fetch": "^2.5.9",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.3",
"uglify-js": "^3.13.3"
}
}