-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.65 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
59
60
61
62
63
64
65
66
67
{
"name": "runme",
"version": "3.9.0",
"author": "Christian Bromann <[email protected]>",
"license": "Apache-2.0",
"description": "A JavaScript module to use Runme in Node.js",
"homepage": "https://github.com/stateful/runmejs#readme",
"bin": {
"runme": "./bin/runme.js"
},
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": [
{
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
},
"./cjs/index.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/stateful/runmejs.git"
},
"keywords": [
"runme"
],
"bugs": {
"url": "https://github.com/stateful/runmejs/issues"
},
"scripts": {
"postinstall": "node ./postInstall.js"
},
"devDependencies": {
"@octokit/rest": "^19.0.11",
"@types/node": "^20.3.1",
"@types/tar-fs": "^2.0.1",
"@types/unzipper": "^0.10.6",
"@types/wait-on": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitest/coverage-c8": "^0.32.0",
"c8": "^7.14.0",
"eslint": "^8.42.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^47.0.0",
"npm-run-all": "^4.1.5",
"release-it": "^17.1.1",
"rimraf": "^5.0.1",
"runme": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"vitest": "^0.32.0"
},
"dependencies": {
"@actions/exec": "^1.1.1",
"get-port": "^7.0.0",
"node-fetch": "^3.3.1",
"tar-fs": "^2.1.1",
"unzipper": "^0.10.14",
"wait-on": "^7.0.1"
}
}