-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.44 KB
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
{
"name": "@hamdymohamedak/runly",
"version": "0.2.1",
"publishConfig": {
"access": "public"
},
"description": "Run the same command under multiple Node.js versions from one config (npx-resolved runtimes)",
"type": "module",
"bin": {
"runly": "dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"templates/SKILL.md"
],
"scripts": {
"test": "node --test test/smoke.test.js",
"ci:runly-smoke": "node dist/cli.js -c examples/all-versions-pass/runly.config.mjs",
"ci:verify-init": "node scripts/ci-verify-init.mjs",
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"test:self": "node --test dist/**/*.test.js",
"runly": "node dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hamdymohamedak/Runly.git"
},
"homepage": "https://github.com/hamdymohamedak/Runly#readme",
"bugs": {
"url": "https://github.com/hamdymohamedak/Runly/issues"
},
"engines": {
"node": ">=18"
},
"keywords": [
"runly",
"node",
"nodejs",
"testing",
"test",
"matrix",
"multi-version",
"compatibility",
"npx",
"ci"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^22.14.0",
"typescript": "^5.8.3"
}
}