This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
58 lines (58 loc) · 1.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "rust-toolchain",
"version": "1.0.7",
"private": false,
"description": "Install the Rust toolchain",
"main": "lib/main.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"scripts": {
"build": "rm -rf ./dist/* && ncc build src/main.ts --minify",
"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",
"pretest": "git config core.hooksPath .githooks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-rs/toolchain.git"
},
"keywords": [
"actions",
"rust",
"rustup",
"toolchain"
],
"author": "actions-rs",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions-rs/toolchain/issues"
},
"dependencies": {
"@actions-rs/core": "^0.1.6",
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/io": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"mock-env": "^0.2.0",
"npm-check-updates": "^10.2.1",
"prettier": "^2.1.2",
"temp-write": "^4.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
}
}