-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.6 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
{
"name": "ansible_galaxy_collection",
"version": "2.10.1",
"description": "Deploy a collection to Ansible Galaxy",
"main": "dist/index.js",
"scripts": {
"test": "npm run test:unit",
"test:unit": "jest --coverage",
"test:e2e": "act -j test_deploy -s GALAXY_API_KEY='fakekey' --container-architecture linux/amd64",
"build": "tsc",
"dev": "tsc -w",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"clean": "rm -rf node_modules",
"all": "npm run format && npm run build && git add . && git s",
"docker": "docker build -t artis3n/ansible_galaxy_collection:local ."
},
"engines": {
"node": "~20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artis3n/ansible_galaxy_collection.git"
},
"author": "Ari Kalfus <[email protected]> (@artis3n)",
"license": "MIT",
"bugs": {
"url": "https://github.com/artis3n/ansible_galaxy_collection/issues"
},
"homepage": "https://github.com/artis3n/ansible_galaxy_collection#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.0",
"@actions/io": "^1.1.1",
"class-validator": "^0.14.1",
"js-yaml": "^4.1.0",
"semver": "^7.6.0"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.2",
"@types/node": "^20.12.2",
"@types/semver": "^7.5.8",
"@types/validator": "^13.11.9",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
}
}