-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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
{
"name": "@webeferen/buildable",
"description": "Workspace linking tool on steroids.",
"keywords": [
"install",
"build",
"publish",
"fast",
"incremental",
"package manager",
"monorepo",
"workspace",
"multirepo",
"tool",
"linking",
"package.json",
"pnpm"
],
"version": "1.4.2",
"main": "lib/index.js",
"type": "module",
"scripts": {
"test": "node ./bin/buildable.js run \"jasmine --config=jasmine.json\"",
"format": "prettier . --write",
"lint": "prettier . --check",
"release": "changeset publish",
"version-packages": "changeset version",
"changeset": "changeset"
},
"bin": {
"buildable": "bin/buildable.js"
},
"author": "Michal Makowski",
"license": "MIT",
"repository": {
"url": "git+https://github.com/WebEferen/buildable.git"
},
"dependencies": {
"@manypkg/get-packages": "^1.1.3",
"chalk": "5.2.0",
"concurrently": "^7.6.0",
"dependency-graph": "^0.11.0",
"glob": "^8.1.0",
"rxjs": "^7.8.0",
"yaml": "^2.2.1",
"yargs": "^17.6.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"pnpm": "^7.28.0",
"jasmine": "^4.5.0",
"prettier": "^2.8.3"
},
"bugs": {
"url": "https://github.com/WebEferen/buildable/issues"
},
"homepage": "https://github.com/WebEferen/buildable#readme",
"directories": {
"lib": "lib"
}
}