-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
61 lines (61 loc) · 1.74 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
{
"name": "secrets-sync-action",
"version": "0.0.0",
"description": "Secrets sync action for Github",
"keywords": [
"actions",
"node",
"setup"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jpoehnelt/secrets-sync-action.git"
},
"license": "Apache 2.0",
"author": "Justin Poehnelt",
"main": "lib/index.js",
"scripts": {
"all": "npm run build && npm run format-check && npm run lint && npm test && npm run pack",
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"pack": "ncc build",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.9.1",
"@octokit/plugin-retry": "^3.0.1",
"@octokit/plugin-throttling": "^3.2.0",
"@octokit/rest": "^18.12.0",
"p-limit": "^2.3.0",
"tweetsodium": "0.0.4"
},
"devDependencies": {
"@octokit/fixtures": "^21.0.2",
"@octokit/types": "^6.31.1",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/release-notes-generator": "^11.0.4",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.30",
"@types/tmp": "^0.1.0",
"@typescript-eslint/parser": "^2.24.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^5.16.0",
"eslint-plugin-github": "^2.0.0",
"eslint-plugin-jest": "^22.21.0",
"flow-bin": "^0.211.1",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"jest-environment-uint8array": "^1.0.0",
"js-yaml": "^3.13.1",
"nock": "^12.0.3",
"prettier": "^2.4.1",
"semantic-release": "^21.0.7",
"ts-jest": "^24.2.0",
"typescript": "^4.0.0"
}
}