-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 loc) · 939 Bytes
/
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
{
"name": "pip-action",
"version": "1.0.0",
"private": true,
"description": "An action to automatically install Pip packages",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"release": "ncc build lib/pip-action.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BSFishy/pip-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "BSFishy",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.0.0",
"@actions/exec": "^1.0.0",
"semver": "^6.1.1",
"hasbin": "^1.2.3"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@zeit/ncc": "^0.20.5",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
}
}