-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·66 lines (66 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·66 lines (66 loc) · 2.05 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
64
65
66
{
"name": "r2g",
"version": "0.3.1",
"description": "Prove packages work as real downstream dependencies before release.",
"main": "dist/index.js",
"bin": {
"r2g": "cli/r2g.js",
"r2g-bash": "cli/r2g.sh",
"r2g_symlink": "cli/r2g_symlink.sh",
"r2g_get_project_root": "cli/r2g_get_project_root.js"
},
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"build": "node scripts/clean-dist.mjs && tsc",
"test": "npm run build && npm run test:unit",
"test:unit": "node --test test/*.test.js",
"test:containerized": "node --test test/containerized.test.js",
"test:e2e": "npm run build && node test/e2e-multi-ecosystem.js",
"audit:cli": "node scripts/audit-cli.mjs",
"prepublishOnly": "npm test && npm run audit:cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ORESoftware/r2g.git"
},
"keywords": [
"typescript",
"library",
"skeleton",
"scaffold"
],
"author": "Olegzandr V.D.",
"license": "MIT",
"bugs": {
"url": "https://github.com/ORESoftware/r2g/issues"
},
"homepage": "https://github.com/ORESoftware/r2g#readme",
"dependencies": {
"@oresoftware/deep.mixin": "0.0.107",
"@oresoftware/f2e": "https://github.com/ORESoftware/flags-2-env/archive/48530ec59759d9ecef5a283f49875de6540d2fab.tar.gz",
"async": "^2.6.4",
"chalk": "^2.4.1",
"clean-trace": "latest",
"json-stdio": "latest",
"prepend-transform": "0.0.1016",
"shortid": "^2.2.17",
"tar": "^7.5.22"
},
"devDependencies": {
"@types/async": "^2.0.49",
"@types/node": "^22.0.0",
"@types/shortid": "0.0.29",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22"
},
"r2g": {
"test": "node -e \"const assert = require('assert'); const matrix = require('./.r2g/fixtures/phase-matrix.json'); assert.deepStrictEqual(matrix.phases, ['phase-Z', 'phase-S', 'phase-T']); assert.strictEqual(matrix.phaseCommands.z, 'package.json:r2g.test'); console.log('phase-Z fixture contract ok');\""
},
"npp": {
"publishable": true
},
"b3val": 3
}