@form8ion/project 13.1.1 → 14.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +1 -1
- package/lib/index.mjs +1 -1
- package/package.json +51 -51
package/lib/index.js
CHANGED
|
@@ -9,7 +9,7 @@ var filedirname = require('filedirname');
|
|
|
9
9
|
var deepmerge = require('deepmerge');
|
|
10
10
|
var resultsReporter = require('@form8ion/results-reporter');
|
|
11
11
|
var cliMessages = require('@travi/cli-messages');
|
|
12
|
-
var execa = require('execa');
|
|
12
|
+
var execa = require('@form8ion/execa-wrapper');
|
|
13
13
|
var mustache = require('mustache');
|
|
14
14
|
var readme = require('@form8ion/readme');
|
|
15
15
|
var nodegitWrapper = require('@form8ion/nodegit-wrapper');
|
package/lib/index.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import filedirname from 'filedirname';
|
|
|
5
5
|
import deepmerge from 'deepmerge';
|
|
6
6
|
import { reportResults } from '@form8ion/results-reporter';
|
|
7
7
|
import { info, warn } from '@travi/cli-messages';
|
|
8
|
-
import execa from 'execa';
|
|
8
|
+
import execa from '@form8ion/execa-wrapper';
|
|
9
9
|
import mustache from 'mustache';
|
|
10
10
|
import { lift as lift$1 } from '@form8ion/readme';
|
|
11
11
|
import { Repository, Remote } from '@form8ion/nodegit-wrapper';
|
package/package.json
CHANGED
|
@@ -1,24 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@form8ion/project",
|
|
3
3
|
"description": "opinionated scaffolder for new projects",
|
|
4
|
-
"version": "13.1.1",
|
|
5
|
-
"main": "lib/index.js",
|
|
6
|
-
"module": "lib/index.mjs",
|
|
7
|
-
"exports": {
|
|
8
|
-
"require": "./lib/index.js",
|
|
9
|
-
"import": "./lib/index.mjs"
|
|
10
|
-
},
|
|
11
4
|
"license": "MIT",
|
|
5
|
+
"version": "14.0.0-alpha.1",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": "^16"
|
|
8
|
+
},
|
|
9
|
+
"author": "Matt Travi <npm@travi.org> (https://matt.travi.org/)",
|
|
12
10
|
"repository": "form8ion/project",
|
|
13
11
|
"bugs": "https://github.com/form8ion/project/issues",
|
|
14
12
|
"homepage": "https://npm.im/@form8ion/project",
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
"
|
|
18
|
-
],
|
|
19
|
-
"funding": {
|
|
20
|
-
"url": "https://github.com/sponsors/travi"
|
|
13
|
+
"exports": {
|
|
14
|
+
"require": "./lib/index.js",
|
|
15
|
+
"import": "./lib/index.mjs"
|
|
21
16
|
},
|
|
17
|
+
"main": "lib/index.js",
|
|
18
|
+
"module": "lib/index.mjs",
|
|
22
19
|
"scripts": {
|
|
23
20
|
"clean": "rimraf lib/",
|
|
24
21
|
"lint:js": "eslint . --cache",
|
|
@@ -43,74 +40,77 @@
|
|
|
43
40
|
"prepack": "run-s build",
|
|
44
41
|
"prepare": "husky install"
|
|
45
42
|
},
|
|
46
|
-
"publishConfig": {
|
|
47
|
-
"access": "public"
|
|
48
|
-
},
|
|
49
|
-
"engines": {
|
|
50
|
-
"node": "^14.15 || ^16"
|
|
51
|
-
},
|
|
52
43
|
"files": [
|
|
53
44
|
"lib/",
|
|
54
45
|
"templates/"
|
|
55
46
|
],
|
|
47
|
+
"publishConfig": {
|
|
48
|
+
"access": "public"
|
|
49
|
+
},
|
|
56
50
|
"config": {
|
|
57
51
|
"commitizen": {
|
|
58
52
|
"path": "./node_modules/cz-conventional-changelog"
|
|
59
53
|
}
|
|
60
54
|
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@form8ion/core": "^1.6.0-alpha.2",
|
|
57
|
+
"@form8ion/execa-wrapper": "^1.0.0",
|
|
58
|
+
"@form8ion/nodegit-wrapper": "^1.1.0-alpha.1",
|
|
59
|
+
"@form8ion/overridable-prompts": "^1.1.0",
|
|
60
|
+
"@form8ion/readme": "2.0.1",
|
|
61
|
+
"@form8ion/results-reporter": "^1.1.0",
|
|
62
|
+
"@hapi/hoek": "^10.0.0",
|
|
63
|
+
"@travi/cli-messages": "1.0.5",
|
|
64
|
+
"deepmerge": "^4.2.2",
|
|
65
|
+
"filedirname": "^2.7.0",
|
|
66
|
+
"hosted-git-info": "^5.0.0",
|
|
67
|
+
"inquirer": "^8.0.0",
|
|
68
|
+
"joi": "^17.1.1",
|
|
69
|
+
"mustache": "4.2.0",
|
|
70
|
+
"spdx-license-list": "6.6.0",
|
|
71
|
+
"word-wrap": "^1.2.3",
|
|
72
|
+
"write-yaml": "1.0.0"
|
|
73
|
+
},
|
|
61
74
|
"devDependencies": {
|
|
62
|
-
"@babel/register": "7.
|
|
63
|
-
"@cucumber/cucumber": "8.
|
|
64
|
-
"@form8ion/babel-preset": "1.6.
|
|
65
|
-
"@form8ion/commitlint-config": "1.0.
|
|
66
|
-
"@form8ion/eslint-config": "5.0.
|
|
75
|
+
"@babel/register": "7.18.9",
|
|
76
|
+
"@cucumber/cucumber": "8.5.2",
|
|
77
|
+
"@form8ion/babel-preset": "1.6.95",
|
|
78
|
+
"@form8ion/commitlint-config": "1.0.38",
|
|
79
|
+
"@form8ion/eslint-config": "5.0.9",
|
|
67
80
|
"@form8ion/eslint-config-cucumber": "1.4.1",
|
|
68
|
-
"@form8ion/eslint-config-mocha": "2.0.
|
|
69
|
-
"@form8ion/remark-lint-preset": "4.0.
|
|
70
|
-
"@travi/any": "2.
|
|
71
|
-
"c8": "7.
|
|
81
|
+
"@form8ion/eslint-config-mocha": "2.0.3",
|
|
82
|
+
"@form8ion/remark-lint-preset": "4.0.2",
|
|
83
|
+
"@travi/any": "2.1.5",
|
|
84
|
+
"c8": "7.12.0",
|
|
72
85
|
"chai": "4.3.6",
|
|
73
86
|
"chai-as-promised": "7.1.1",
|
|
74
87
|
"cross-env": "7.0.3",
|
|
75
88
|
"cz-conventional-changelog": "3.3.0",
|
|
76
89
|
"gherkin-lint": "4.2.2",
|
|
77
90
|
"husky": "8.0.1",
|
|
78
|
-
"lockfile-lint": "4.
|
|
91
|
+
"lockfile-lint": "4.8.0",
|
|
79
92
|
"ls-engines": "0.7.0",
|
|
80
93
|
"make-dir": "3.1.0",
|
|
81
94
|
"mdast-util-from-markdown": "1.2.0",
|
|
82
95
|
"mdast-util-heading-range": "3.1.0",
|
|
83
96
|
"mdast-zone": "5.1.0",
|
|
84
97
|
"mocha": "10.0.0",
|
|
85
|
-
"mock-fs": "5.1.
|
|
98
|
+
"mock-fs": "5.1.4",
|
|
86
99
|
"npm-run-all": "4.1.5",
|
|
87
|
-
"remark-cli": "
|
|
100
|
+
"remark-cli": "11.0.0",
|
|
88
101
|
"remark-toc": "8.0.1",
|
|
89
102
|
"remark-usage": "10.0.1",
|
|
90
103
|
"rimraf": "3.0.2",
|
|
91
|
-
"rollup": "2.
|
|
104
|
+
"rollup": "2.79.0",
|
|
92
105
|
"rollup-plugin-auto-external": "2.0.0",
|
|
93
106
|
"sinon": "14.0.0",
|
|
94
|
-
"testdouble": "3.16.
|
|
107
|
+
"testdouble": "3.16.6",
|
|
95
108
|
"unist-util-find": "1.0.2"
|
|
96
109
|
},
|
|
97
|
-
"
|
|
98
|
-
"@
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
"
|
|
102
|
-
"@form8ion/results-reporter": "^1.1.0",
|
|
103
|
-
"@hapi/hoek": "^10.0.0",
|
|
104
|
-
"@travi/cli-messages": "1.0.5",
|
|
105
|
-
"deepmerge": "^4.2.2",
|
|
106
|
-
"execa": "^5.0.0",
|
|
107
|
-
"filedirname": "^2.7.0",
|
|
108
|
-
"hosted-git-info": "^5.0.0",
|
|
109
|
-
"inquirer": "^8.0.0",
|
|
110
|
-
"joi": "^17.1.1",
|
|
111
|
-
"mustache": "4.2.0",
|
|
112
|
-
"spdx-license-list": "6.5.0",
|
|
113
|
-
"word-wrap": "^1.2.3",
|
|
114
|
-
"write-yaml": "1.0.0"
|
|
110
|
+
"contributors": [
|
|
111
|
+
"Trevor Richardson <npm@trevorrichardson.me> (https://trevorrichardson.me)"
|
|
112
|
+
],
|
|
113
|
+
"funding": {
|
|
114
|
+
"url": "https://github.com/sponsors/travi"
|
|
115
115
|
}
|
|
116
116
|
}
|