2019-09-12 23:48:44 +03:00
|
|
|
{
|
2019-09-15 11:45:45 +03:00
|
|
|
"name": "rust-cargo",
|
2019-11-24 00:00:15 +02:00
|
|
|
"version": "1.0.3",
|
2019-09-12 23:48:44 +03:00
|
|
|
"private": false,
|
|
|
|
"description": "Run cargo command",
|
|
|
|
"main": "lib/main.js",
|
|
|
|
"directories": {
|
|
|
|
"lib": "lib",
|
|
|
|
"test": "__tests__"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2019-10-22 14:49:39 +03:00
|
|
|
"bundle": "cp -r .matchers ./dist/",
|
2020-03-25 07:40:28 +02:00
|
|
|
"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"
|
2019-09-12 23:48:44 +03:00
|
|
|
},
|
|
|
|
"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": {
|
2020-06-06 11:46:44 +03:00
|
|
|
"@actions-rs/core": "0.1.3",
|
|
|
|
"@actions/core": "^1.2.4",
|
2019-09-13 22:45:36 +03:00
|
|
|
"string-argv": "^0.3.1"
|
2019-09-12 23:48:44 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-07-01 17:18:13 +03:00
|
|
|
"@types/jest": "^26.0.3",
|
2020-07-01 17:23:58 +03:00
|
|
|
"@types/node": "^14.0.14",
|
2020-08-01 15:34:21 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^3.7.1",
|
2020-07-01 17:23:58 +03:00
|
|
|
"@typescript-eslint/parser": "^3.5.0",
|
2020-06-01 16:40:56 +03:00
|
|
|
"@zeit/ncc": "^0.22.3",
|
2020-07-01 17:26:57 +03:00
|
|
|
"eslint": "^7.3.1",
|
2020-06-01 16:37:09 +03:00
|
|
|
"eslint-config-prettier": "^6.11.0",
|
2020-07-01 17:23:45 +03:00
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
2020-07-01 17:30:31 +03:00
|
|
|
"jest": "^26.1.0",
|
2020-07-01 17:17:00 +03:00
|
|
|
"jest-circus": "^26.1.0",
|
2020-08-01 15:35:28 +03:00
|
|
|
"npm-check-updates": "^7.0.2",
|
2020-05-01 11:37:12 +03:00
|
|
|
"prettier": "^2.0.5",
|
2020-08-01 15:33:35 +03:00
|
|
|
"ts-jest": "^26.1.4",
|
2020-08-01 15:38:45 +03:00
|
|
|
"typescript": "^3.9.7"
|
2019-09-12 23:48:44 +03:00
|
|
|
}
|
|
|
|
}
|