-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.01 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
68
69
70
71
72
73
74
75
76
{
"name": "@semrel-extra/topo",
"version": "1.14.1",
"description": "Helpers to assist monorepo dependencies traversals",
"publishConfig": {
"access": "public"
},
"main": "./target/cjs/index.cjs",
"types": "./target/dts/index.d.ts",
"type": "module",
"exports": {
"types": "./target/dts/index.d.ts",
"require": "./target/cjs/index.cjs",
"import": "./target/esm/index.mjs",
"module": "./target/esm/index.mjs",
"default": "./target/esm/index.mjs"
},
"scripts": {
"build": "concurrently 'npm:build:*'",
"build:esm": "node ./src/scripts/build.cjs",
"build:cjs": "node ./src/scripts/build.cjs --cjs",
"build:dts": "tsc --emitDeclarationOnly --skipLibCheck --outDir target/dts",
"test": "concurrently 'npm:test:*'",
"test:unit": "c8 -r html -r text -r lcov loadr -- uvu './src/test/' -i fixturess",
"test:lint": "prettier --write src",
"postupdate": "yarn && yarn build && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/semrel-extra/topo.git"
},
"files": [
"target",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"keywords": [
"topo",
"graph",
"monorepo"
],
"author": "Anton Golub <antongolub@antongolub.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/semrel-extra/topo/issues"
},
"homepage": "https://github.com/semrel-extra/topo#readme",
"dependencies": {
"fast-glob": "^3.3.2",
"js-yaml": "^4.1.0",
"toposource": "^1.2.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/micromatch": "^4.0.6",
"@types/node": "^20.10.5",
"c8": "^8.0.1",
"esbuild": "^0.25.0",
"esbuild-node-externals": "^1.11.0",
"loadr": "^0.1.1",
"micromatch": "^4.0.5",
"prettier": "^3.1.1",
"tsm": "^2.3.0",
"typescript": "^5.3.3",
"uvu": "^0.5.6",
"concurrently": "^8.2.2"
},
"prettier": {
"arrowParens": "avoid",
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
}
}