-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
68 lines (68 loc) · 1.72 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
{
"name": "frigg-monorepo",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"auto:info": "auto info",
"test:all": "npm test --foreground-scripts --workspaces --if-present",
"test:api-module-managers": "jest --testMatch='<rootDir>/api-module-library/**/manager.test.js' --globalSetup='<rootDir>/scripts/set-up-tests.js' --globalTeardown='<rootDir>/scripts/tear-down-tests.js' --watch",
"use:engine": "sudo n install $npm_package_engines_node && npm run use:npm",
"use:npm": "npm install -g npm@$npm_package_engines_npm",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"author": "seanspeaks <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@auto-it/all-contributors": "^11.1.2",
"@auto-it/conventional-commits": "^11.2.0",
"@auto-it/first-time-contributor": "^11.1.2",
"@auto-it/slack": "^11.1.2",
"auto": "^11.1.2",
"lerna": "^8.1.2",
"nx": "^18.1.3"
},
"repository": "friggframework/frigg",
"auto": {
"onlyPublishWithReleaseLabel": true,
"shipit": {},
"prereleaseBranches": [
"next",
"v1-alpha"
],
"versionBranches": true,
"plugins": [
[
"npm",
{
"forcePublish": true
}
],
"all-contributors",
"conventional-commits",
"first-time-contributor",
"released",
[
"slack",
{
"auth": "app",
"channels": [
"C017RNCQV70",
"C02F2NT7F0R"
]
}
]
]
},
"dependencies": {
"bot": "^0.0.3"
}
}