This repository has been archived by the owner on Aug 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 3.06 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
{
"name": "@travi/github-scaffolder",
"description": "VCS scaffolder for projects to be hosted on GitHub",
"license": "MIT",
"version": "0.0.0-semantically-released",
"type": "module",
"engines": {
"node": "^18.17 || >=20.6.1"
},
"author": "Matt Travi <npm@travi.org> (https://matt.travi.org/)",
"repository": "travi/github-scaffolder",
"bugs": "https://github.com/travi/github-scaffolder/issues",
"homepage": "https://npm.im/@travi/github-scaffolder",
"exports": "./lib/index.js",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib/",
"lint:js": "eslint . --cache",
"lint:gherkin": "gherkin-lint",
"lint:md": "remark --frail .",
"lint:sensitive": "ban",
"lint:peer": "npm ls >/dev/null",
"lint:engines": "ls-engines",
"lint:publish": "publint --strict",
"pretest": "run-s build",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"test:unit:base": "DEBUG=any vitest run",
"test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
"pretest:integration": "run-s build",
"test:integration": "run-s 'test:integration:base -- --profile noWip'",
"test:integration:base": "NODE_OPTIONS=\"--enable-source-maps\" cucumber-js test/integration",
"test:integration:debug": "DEBUG=test,nock.* run-s test:integration",
"test:integration:wip": "run-s 'test:integration:base -- --profile wip'",
"test:integration:focus": "run-s 'test:integration:base -- --profile focus'",
"test:integration:focus:debug": "DEBUG=test,nock.* run-s test:integration:focus",
"build": "run-s clean build:*",
"build:js": "rollup -c",
"generate:md": "remark . --output",
"watch": "run-s 'build:js -- --watch'",
"prepack": "run-s build",
"prepare": "husky install"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@form8ion/github": "^1.4.1",
"@form8ion/overridable-prompts": "^1.1.0",
"git-config": "0.0.7"
},
"devDependencies": {
"@cucumber/cucumber": "10.9.0",
"@form8ion/core": "4.6.1",
"@travi/any": "3.1.2",
"@travi/babel-preset": "3.0.130",
"@travi/eslint-config": "5.0.8",
"@travi/eslint-config-cucumber": "1.0.6",
"ban-sensitive-files": "1.10.5",
"c8": "10.1.2",
"chai": "5.1.1",
"commitlint-config-travi": "1.4.50",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"debug": "4.3.6",
"deep-equal": "2.2.3",
"gherkin-lint": "4.2.4",
"http-status-codes": "2.3.0",
"husky": "9.1.5",
"jest-when": "3.6.0",
"js-yaml": "4.1.0",
"lodash.zip": "4.2.0",
"ls-engines": "0.9.3",
"mock-fs": "5.2.0",
"msw": "2.3.5",
"npm-run-all2": "6.2.2",
"publint": "0.2.10",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"remark-preset-lint-travi": "6.0.5",
"remark-toc": "9.0.0",
"remark-usage": "11.0.1",
"rimraf": "6.0.1",
"rollup": "4.21.0",
"rollup-plugin-auto-external": "2.0.0",
"vitest": "2.0.5"
}
}