-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "ducto",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "Next Generation Pipeline Validator",
"main": "index.js",
"scripts": {
"test": "pnpm recursive run test",
"build": "pnpm recursive run build",
"publish": "pnpm run build && pnpm -r publish --access public",
"version": "lerna version --conventional-commits --no-push --no-git-tag-version --no-changelog",
"version:pre": "lerna version --conventional-prerelease --no-push --no-git-tag-version --no-changelog"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathiasgheno/ducto.git"
},
"keywords": [],
"author": "Mathias Gheno<[email protected]>",
"system": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"os": [
"!win32",
"linux"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mathiasgheno/ducto/issues"
},
"homepage": "https://github.com/mathiasgheno/ducto#readme",
"dependencies": {
"@jest/types": "^29.2.1",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.8",
"esbuild": "^0.14.43",
"jest": "^28.1.2",
"lerna": "^5.5.0",
"loglevel": "^1.8.0",
"typescript": "^4.9.5"
},
"workspaces": [
"packages/*"
]
}