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/",
|
|
|
|
"build": "ncc build src/main.ts --minify && npm run bundle",
|
|
|
|
"watch": "npm run bundle && ncc build src/main.ts --watch --minify",
|
2019-09-12 23:48:44 +03:00
|
|
|
"test": "jest"
|
|
|
|
},
|
|
|
|
"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": {
|
2019-11-23 23:46:51 +02:00
|
|
|
"@actions-rs/core": "0.0.8",
|
2019-09-19 10:19:37 +03:00
|
|
|
"@actions/core": "^1.1.1",
|
2019-09-13 22:45:36 +03:00
|
|
|
"string-argv": "^0.3.1"
|
2019-09-12 23:48:44 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-02-01 07:44:53 +02:00
|
|
|
"@types/jest": "^25.1.1",
|
2020-03-01 07:37:38 +02:00
|
|
|
"@types/node": "^13.7.7",
|
2020-02-01 07:41:45 +02:00
|
|
|
"@zeit/ncc": "^0.21.0",
|
2019-09-12 23:48:44 +03:00
|
|
|
"jest": "^24.9.0",
|
2020-02-01 07:44:56 +02:00
|
|
|
"jest-circus": "^25.1.0",
|
2020-02-01 07:39:25 +02:00
|
|
|
"ts-jest": "^24.3.0",
|
2020-02-01 07:42:16 +02:00
|
|
|
"typescript": "^3.7.5"
|
2019-09-12 23:48:44 +03:00
|
|
|
}
|
|
|
|
}
|