-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.68 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.68 KB
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
103
104
105
{
"name": "@form8ion/github",
"description": "form8ion plugin for projects using GitHub as host for their git repository",
"license": "MIT",
"version": "0.0.0-semantically-released",
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.14.0"
},
"author": "Matt Travi <npm@travi.org> (https://matt.travi.org)",
"repository": "form8ion/github",
"bugs": "https://github.com/form8ion/github/issues",
"homepage": "https://npm.im/@form8ion/github",
"runkitExampleFilename": "./example.js",
"exports": "./lib/index.js",
"main": "./lib/index.js",
"sideEffects": false,
"scripts": {
"build:js": "rollup --config",
"watch": "run-s 'build:js -- --watch'",
"clean": "rimraf ./lib",
"prebuild": "run-s clean",
"build": "npm-run-all --print-label --parallel build:*",
"prepack": "run-s build",
"pregenerate:md": "run-s build",
"test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
"test:unit:base": "DEBUG=any vitest run",
"lint:lockfile": "lockfile-lint",
"prepare": "husky",
"lint:md": "remark . --frail",
"generate:md": "remark . --output",
"lint:peer": "npm ls >/dev/null",
"pretest:integration:base": "run-s build",
"test:integration": "run-s 'test:integration:base -- --profile noWip'",
"test:integration:base": "NODE_OPTIONS=--enable-source-maps DEBUG=any cucumber-js test/integration",
"test:integration:debug": "DEBUG=test run-s test:integration",
"test:integration:wip": "run-s 'test:integration:base -- --profile wip'",
"test:integration:wip:debug": "DEBUG=test run-s 'test:integration:wip'",
"test:integration:focus": "run-s 'test:integration:base -- --profile focus'",
"test:integration:focus:debug": "DEBUG=test run-s 'test:integration:focus'",
"lint:gherkin": "gherkin-lint --config=.gherkin-lintrc.json",
"lint:js": "eslint . --cache",
"lint:js:fix": "run-s 'lint:js -- --fix'",
"lint:publish": "publint --strict",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"lint:engines": "ls-engines",
"pretest": "run-s build"
},
"files": [
"example.js",
"lib/",
"src/"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"packageManager": "npm@11.7.0+sha512.c22099a6fff8d5b2286c2a09df5352b4858a7c0c716320f58989d60ad8b29ecf2ce6fdfe97ccb41c23ffb1272e1fa079f868487dd6b81d02a2a9e199c095a117",
"dependencies": {
"@form8ion/core": "^4.6.1",
"@form8ion/github-core": "^1.0.0",
"@form8ion/repository-settings": "^2.0.0",
"deepmerge": "^4.3.1",
"lodash.kebabcase": "^4.1.1",
"lodash.uniqby": "^4.7.0",
"lodash.zip": "^4.2.0",
"octokit-plugin-unique-issue": "^1.2.0"
},
"devDependencies": {
"@cucumber/cucumber": "11.3.0",
"@form8ion/commitlint-config": "2.0.8",
"@form8ion/eslint-config": "7.0.13",
"@form8ion/eslint-config-cucumber": "1.4.1",
"@form8ion/eslint-config-vitest": "1.0.0",
"@form8ion/remark-lint-preset": "6.0.7",
"@octokit/core": "7.0.6",
"@travi/any": "3.1.3",
"c8": "10.1.3",
"cross-env": "10.1.0",
"cz-conventional-changelog": "3.3.0",
"debug": "4.4.3",
"deep-equal": "2.2.3",
"gherkin-lint": "4.2.4",
"http-status-codes": "2.3.0",
"husky": "9.1.7",
"js-yaml": "4.1.1",
"lockfile-lint": "4.14.1",
"ls-engines": "0.9.4",
"mock-fs": "5.5.0",
"msw": "2.12.7",
"npm-run-all2": "8.0.4",
"publint": "0.3.16",
"remark-cli": "12.0.1",
"remark-toc": "9.0.0",
"remark-usage": "11.0.1",
"rimraf": "6.1.2",
"rollup": "4.54.0",
"rollup-plugin-auto-external": "2.0.0",
"vitest": "4.0.18",
"vitest-when": "0.10.0"
},
"peerDependencies": {
"@octokit/core": "^7.0.0"
}
}