cargo/package.json
2023-02-12 16:42:14 +00:00

55 lines
1.6 KiB
JSON

{
"name": "rust-cargo",
"version": "1.0.3",
"private": false,
"description": "Run cargo command",
"main": "lib/main.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"scripts": {
"bundle": "cp -r .matchers ./dist/",
"build": "rm -rf ./dist/* && ncc build src/main.ts --minify && npm run bundle",
"format": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
"lint": "tsc --noEmit && eslint 'src/**/*.ts' '__tests__/**/*.ts'",
"watch": "rm -rf ./dist/* && ncc build src/main.ts --watch",
"test": "jest -c jest.config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-rs/cargo.git"
},
"keywords": [
"actions",
"rust",
"cargo"
],
"author": "actions-rs",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions-rs/cargo/issues"
},
"dependencies": {
"@actions/core": "^1.2.4",
"action-core": "git+https://github.com/synthet-ic/action-core.git",
"string-argv": "^0.3.1"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.2",
"jest-circus": "^29.4.2",
"npm-check-updates": "^16.7.4",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}