This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.27 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
{
"name": "extended-yo-generator",
"type": "module",
"private": true,
"description": "Provides packages for executing and testing extended implementations of the yeoman-generator.",
"files": [],
"homepage": "/~https://github.com/manuth/ExtendedYoGenerator#readme",
"repository": {
"type": "git",
"url": "git+/~https://github.com/manuth/ExtendedYoGenerator.git"
},
"bugs": {
"url": "/~https://github.com/manuth/ExtendedYoGenerator/issues"
},
"publishConfig": {
"access": "public"
},
"workspaces": [
"./packages/*"
],
"scripts": {
"build": "npm run copy-files && npm run compile",
"copy-files": "glob-exec --foreach \"./packages/*\" --parallel -- copy-and-watch ./{LICENSE,CHANGELOG.md,.npmignore} \"{{file}}\"",
"compile": "tsc -b tsconfig.build.json",
"rebuild": "npm run clean && npm run build",
"watch": "concurrently --raw \"npm run copy-files -- --watch | shusher\" \"npm run compile -- --watch\"",
"clean": "npm run compile -- --clean && npm run --workspaces clean",
"lint-local": "eslint --max-warnings 0 ./scripts .eslintrc.cjs",
"lint-local-ide": "npm run lint-local || exit 0",
"lint": "npm run lint-local && npm run --workspaces lint",
"lint-ide": "npm run lint-local-ide && npm run --workspaces lint-ide",
"test": "npm run --workspaces test",
"version": "ts-node-esm ./scripts/bumpVersion.ts",
"prepare": "npm run patch-ts && npm run rebuild",
"patch-ts": "ts-patch install"
},
"devDependencies": {
"@manuth/eslint-plugin-typescript": "^3.3.4",
"@manuth/package-json-editor": "^3.0.2",
"@manuth/tsconfig": "^3.0.2",
"@tsd/typescript": "npm:nop@^1.0.0",
"@types/fs-extra": "^9.0.13",
"@types/git-branch": "^2.0.2",
"@types/glob": "^8.0.0",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.15",
"@types/npm-which": "^3.0.1",
"@types/ts-nameof": "^4.2.1",
"concurrently": "^7.4.0",
"copy-and-watch": "^0.1.6",
"eslint": "^8.23.0",
"fs-extra": "^10.1.0",
"git-branch": "^2.0.1",
"glob": "^8.0.3",
"glob-exec": "^0.1.1",
"mocha": "^10.0.0",
"npm-which": "^3.0.1",
"shusher": "^0.1.1",
"source-map-support": "^0.5.21",
"ts-nameof": "^5.0.0",
"ts-node": "^10.9.1",
"ts-patch": "^2.0.2",
"typescript": "^4.8.2"
}
}