rs-cargo/package.json
dependabot-preview[bot] 1cc43e03bb Bump npm-check-updates from 4.0.5 to 4.1.0
Bumps [npm-check-updates](https://github.com/tjunnone/npm-check-updates) from 4.0.5 to 4.1.0.
- [Release notes](https://github.com/tjunnone/npm-check-updates/releases)
- [Commits](https://github.com/tjunnone/npm-check-updates/compare/v4.0.5...v4.1.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-04-01 08:22:09 +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-rs/core": "0.0.9",
"@actions/core": "^1.2.3",
"string-argv": "^0.3.1"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.3",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@zeit/ncc": "^0.22.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.2.4",
"jest-circus": "^25.2.4",
"npm-check-updates": "^4.1.0",
"prettier": "^2.0.2",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3"
}
}