-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "create-from-git",
"version": "1.0.8",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"create-from-git": "./dist/cli.esm.js"
},
"license": "MIT",
"description": "Scaffolds a new project using `git checkout` and smart, in-file string replacements. Comes with an API and CLI: `npx create-from-git`. Runs on Mac, Windows and Linux.",
"keywords": [
"scaffolding",
"library",
"API",
"CLI"
],
"repository": {
"url": "git+https://github.com/jsheaven/create-from-git.git",
"type": "git"
},
"scripts": {
"pretest": "yarn build --dev",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --verbose --coverage ./test/*.test.ts",
"clean": "rm -rf ./dist",
"prebuild": "yarn clean",
"build": "yarn node ./build.mjs"
},
"author": "Aron Homberg <[email protected]>",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js"
}
},
"module": "./dist/index.esm.js",
"main": "./dist/index.cjs.js",
"types": "./dist/index.esm.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@jsheaven/easybuild": "^1.1.3",
"@types/jest": "^29.4.0",
"jest": "^29.4.1",
"ts-jest": "next",
"typescript": "^4.9.5"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"fast-glob": "^3.2.12",
"inquirer": "^9.1.4",
"kleur": "^4.1.5",
"validate-npm-package-name": "^5.0.0",
"yargs-parser": "^21.1.1"
}
}