-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.6 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "actions-package-update",
"version": "0.11.0",
"description": "GitHub Action for package.json update.",
"keywords": [
"github-actions",
"npm",
"pr",
"pull-request",
"update",
"yarn",
"yarnpkg"
],
"homepage": "https://github.com/taichi/actions-package-update",
"repository": {
"type": "git",
"url": "https://github.com/taichi/actions-package-update.git"
},
"license": "MIT",
"author": "taichi",
"bin": "bin/main.js",
"scripts": {
"build": "run-s clean lint test bundle",
"bundle": "parcel build src/index.ts --target=node --global main --no-source-maps",
"clean": "rm -r -f dist",
"clean:all": "rm -r -f dist .cache",
"compile": "tsc --project .",
"lint": "tslint --project .",
"prepublish": "run-s clean:all lint test bundle",
"test": "ava",
"watch": "ava -w"
},
"dependencies": {
"@octokit/rest": "^18.0.12",
"@pnpm/read-modules-dir": "^2.0.3",
"cli-table3": "^0.6.0",
"convict": "^6.0.0",
"convict-format-with-validator": "^6.0.0",
"dotenv": "^8.2.0",
"execa": "^5.0.0",
"git-url-parse": "^11.4.3",
"glob": "^7.1.6",
"moment": "^2.29.1",
"pino": "^6.8.0",
"pino-pretty": "^4.3.0",
"read-package-json": "^3.0.0",
"sha.js": "^2.4.11"
},
"devDependencies": {
"@types/convict": "^5.2.1",
"@types/dotenv": "^8.2.0",
"@types/git-url-parse": "^9.0.0",
"@types/node": "^14.14.14",
"@types/pino": "^6.3.4",
"@types/prettier": "^2.1.5",
"@types/sha.js": "^2.4.0",
"@types/source-map-support": "^0.5.3",
"ava": "^3.14.0",
"cash-cp": "^0.2.0",
"cash-rm": "^0.2.0",
"cross-env": "^7.0.3",
"npm-check-updates": "^10.2.5",
"npm-run-all": "^4.1.5",
"parcel": "^1.12.4",
"prettier": "^2.2.1",
"sort-package-json": "^1.48.0",
"source-map-support": "^0.5.19",
"strip-ansi": "^6.0.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.1.3",
"typescript-tslint-plugin": "^1.0.1",
"typesync": "^0.8.0"
},
"resolutions": {
"minimist": "^1.2.5",
"acorn": "7.1.1",
"kind-of": "6.0.3",
"serialize-to-js": "3.0.1",
"node-forge": "0.10.0",
"elliptic": "6.5.3"
},
"engines": {
"node": ">=10"
},
"preferGlobal": true,
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
],
"files": [
"test/**/*.test.ts"
],
"verbose": true
}
}