forked from CrowdStrike/monorepo-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.5 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "monorepo-next",
"version": "11.0.9",
"description": "Detach monorepo packages from normal linking",
"bin": {
"next": "bin/next.js"
},
"main": "src",
"files": [
"bin",
"src"
],
"keywords": [
"attach",
"changed",
"conventional-changelog",
"conventional-commits",
"dag",
"detach",
"graph",
"link",
"npm",
"publish",
"release",
"run",
"standard-version",
"tag",
"version",
"workspaces",
"yarn"
],
"scripts": {
"lint:git": "commitlint --default-branch main",
"lint:js": "eslint . --ext js,json",
"lint:md": "remark -f README.md",
"start": "node bin/next",
"release": "standard-version --commit-all",
"test": "mocha"
},
"standard-version": {
"scripts": {
"prerelease": "yargs-help-output README.md --npm-script-name start",
"precommit": "git add README.md",
"posttag": "git push --follow-tags --atomic"
}
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/CrowdStrike/monorepo-next.git"
},
"author": "Kelly Selden",
"license": "MIT",
"bugs": {
"url": "https://github.com/CrowdStrike/monorepo-next/issues"
},
"homepage": "https://github.com/CrowdStrike/monorepo-next#readme",
"engines": {
"node": ">=18.12"
},
"dependencies": {
"@npmcli/arborist": "^7.0.0",
"conventional-changelog": "5.1.0",
"conventional-recommended-bump": "9.0.0",
"debug": "^4.3.1",
"execa": "^5.0.0",
"glob": "^8.0.0",
"inquirer": "^9.0.0",
"js-yaml": "^4.0.0",
"minimatch": "^9.0.0",
"npm-packlist": "^8.0.0",
"rfc6902": "^5.0.0",
"semver": "^7.5.3",
"standard-version": "9.5.0",
"superset": "^2.0.1",
"tmp": "0.2.1",
"yargs": "^17.0.0"
},
"devDependencies": {
"@crowdstrike/commitlint": "^7.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"common-tags": "^1.8.2",
"eslint": "^8.0.0",
"eslint-config-crowdstrike": "10.1.0",
"eslint-config-crowdstrike-node": "3.0.1",
"eslint-plugin-json-files": "^4.0.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-node": "^11.0.0",
"fixturify": "^3.0.0",
"fs-extra": "^11.1.1",
"git-fixtures": "^8.0.0",
"mocha": "^10.0.0",
"mocha-helpers": "^9.0.0",
"remark-cli": "^12.0.0",
"remark-preset-lint-crowdstrike": "^4.0.0",
"renovate-config-standard": "^2.0.0",
"sinon": "^17.0.0",
"sinon-chai": "^3.5.0",
"standard-node-template": "6.0.0",
"yargs-help-output": "^5.0.0"
}
}