cargo/package.json
2023-02-16 18:16:37 +00:00

30 lines
694 B
JSON

{
"name": "action-cargo",
"version": "0.0.1",
"private": false,
"description": "Run cargo command",
"type": "module",
"main": "src/main.js",
"directories": {
"test": "__tests__"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest -c jest.config.json"
},
"keywords": [
"actions",
"rust",
"cargo"
],
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.4",
"action-core": "git+https://github.com/synthet-ic/action-core.git",
"string-argv": "^0.3.1"
},
"devDependencies": {
"jest": "^29.4.2",
"jest-circus": "^29.4.2"
}
}