forked from nestjs/schematics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.36 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
{
"name": "@mwaeckerlin/schematics",
"version": "1.7.1",
"description": "Nest - modern, fast, powerful node.js web framework (@schematics)",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"postbuild": "npm run copy:collection && npm run copy:lib",
"build": "rm -rf dist && tsc --project tsconfig.lib.json",
"clean": "npm run clean:dist",
"clean:all": "rimraf node_modules",
"preclean:all": "npm run clean",
"clean:dist": "rimraf dist",
"copy:collection": "cpx src/collection.json dist && cpx 'src/lib/**/schema.json' dist/lib",
"copy:lib": "cpx 'src/lib/**/{files,workspace}/**/{.*,*}' dist/lib",
"lint": "eslint '{src,test}/**/*.ts' --fix",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"test": "npm run clean && NODE_ENV=test jest -w 1 --no-cache --config jest.json",
"test:dev": "NODE_ENV=test npm run -s test -- --watchAll",
"prerelease": "npm run build",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scrypt-swiss/nest-templates.git"
},
"contributors": [
"ThomRick",
"Kamil Mysliwiec",
"John Biundo",
"Marc Wäckerlin"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/scrypt-swiss/nest-templates/issues"
},
"homepage": "https://github.com/scrypt-swiss/nest-templates#readme",
"dependencies": {
"@angular-devkit/core": "17.0.3",
"@angular-devkit/schematics": "17.0.3",
"fs-extra": "11.1.1",
"js-yaml": "4.1.0",
"jsonc-parser": "3.2.0",
"pluralize": "8.0.0"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-angular": "18.4.3",
"@types/fs-extra": "11.0.4",
"cpx": "1.5.0",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"nyc": "15.1.0",
"release-it": "17.0.0"
},
"schematics": "./dist/collection.json",
"nyc": {
"include": [
"src"
],
"exclude": [
"node_modules",
"test"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"lint-staged": {
"**/*.{ts,json}": []
}
}