-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.73 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
{
"name": "secret-sync",
"version": "1.0.1",
"private": true,
"description": "Sync secrets across multiple repositories",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc --project ./tsconfig.build.json",
"eslint": "eslint . --ext .js,.cjs,.ts",
"eslint:fix": "npm run eslint -- --fix",
"lint": "tsc --noEmit && npm run eslint",
"local": "ncc run src/main.ts",
"package": "ncc build src/main.ts",
"release": "npm run package && git add -f dist/",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --config=jest.config.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xt0rted/secret-sync.git"
},
"keywords": [
"actions",
"github",
"management",
"security",
"secrets"
],
"author": "xt0rted",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@github/memoize": "^1.1.4",
"@octokit/plugin-retry": "^4.1.1",
"@octokit/plugin-throttling": "^5.0.1",
"js-yaml": "^4.1.0",
"tweetsodium": "^0.0.5"
},
"devDependencies": {
"@types/eslint": "^8.56.2",
"@types/estree": "^1.0.5",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vercel/ncc": "^0.38.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-unicorn": "^50.0.1",
"jest": "^29.7.0",
"jest-circus": "^29.6.2",
"nock": "^13.5.5",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.6.3"
}
}