2019-09-12 23:48:44 +03:00
|
|
|
{
|
2019-09-15 11:45:45 +03:00
|
|
|
"name": "rust-cargo",
|
2019-09-16 10:36:16 +03:00
|
|
|
"version": "1.0.1",
|
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-10-21 10:40:12 +03:00
|
|
|
"@actions-rs/core": "0.0.7",
|
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": {
|
2019-10-28 09:32:17 +02:00
|
|
|
"@types/jest": "^24.0.20",
|
2019-10-16 17:20:51 +03:00
|
|
|
"@types/node": "^12.11.1",
|
2019-09-12 23:48:44 +03:00
|
|
|
"@zeit/ncc": "^0.20.5",
|
|
|
|
"jest": "^24.9.0",
|
|
|
|
"jest-circus": "^24.9.0",
|
2019-09-16 00:40:01 +03:00
|
|
|
"ts-jest": "^24.1.0",
|
2019-10-16 17:20:51 +03:00
|
|
|
"typescript": "^3.6.4"
|
2019-09-12 23:48:44 +03:00
|
|
|
}
|
|
|
|
}
|