UNPKG

2.79 kBJSONView Raw
1{
2 "name": "@nestjs/schematics",
3 "version": "8.0.4",
4 "description": "Nest - modern, fast, powerful node.js web framework (@schematics)",
5 "main": "dist/index.js",
6 "files": [
7 "dist/**/*"
8 ],
9 "publishConfig": {
10 "access": "public"
11 },
12 "scripts": {
13 "postbuild": "npm run copy:collection && npm run copy:lib",
14 "build": "rm -rf dist && tsc --project tsconfig.lib.json",
15 "clean": "gulp clean:src",
16 "copy:collection": "cpx src/collection.json dist && cpx 'src/lib/**/schema.json' dist/lib",
17 "copy:lib": "cpx 'src/lib/**/{files,workspace}/**/*.*' dist/lib && cpx 'src/lib/**/{files,workspace}/**/.!(gitignore)' dist/lib",
18 "lint": "eslint '{src,test}/**/*.ts' --fix",
19 "prepublish:next": "npm run build",
20 "publish:next": "npm publish --access public --tag next",
21 "prepublish:npm": "npm run build",
22 "publish:npm": "npm publish --access public",
23 "test": "npm run clean && NODE_ENV=test jest -w 1 --no-cache --config jest.json",
24 "test:dev": "NODE_ENV=test npm run -s test -- --watchAll",
25 "prerelease": "npm run build",
26 "release": "release-it"
27 },
28 "repository": {
29 "type": "git",
30 "url": "git+https://github.com/nestjs/schematics.git"
31 },
32 "contributors": [
33 "ThomRick",
34 "Kamil Mysliwiec",
35 "John Biundo"
36 ],
37 "license": "MIT",
38 "bugs": {
39 "url": "https://github.com/nestjs/schematics/issues"
40 },
41 "homepage": "https://github.com/nestjs/schematics#readme",
42 "dependencies": {
43 "@angular-devkit/core": "12.2.10",
44 "@angular-devkit/schematics": "12.2.10",
45 "fs-extra": "10.0.0",
46 "jsonc-parser": "3.0.0",
47 "pluralize": "8.0.0"
48 },
49 "devDependencies": {
50 "@commitlint/cli": "13.2.1",
51 "@commitlint/config-angular": "13.2.0",
52 "@types/fs-extra": "9.0.13",
53 "@types/jest": "27.0.2",
54 "@types/node": "16.0.0",
55 "@typescript-eslint/eslint-plugin": "5.0.0",
56 "@typescript-eslint/parser": "5.0.0",
57 "cpx": "1.5.0",
58 "eslint": "8.0.1",
59 "eslint-config-prettier": "8.3.0",
60 "eslint-plugin-import": "2.25.2",
61 "gulp": "4.0.2",
62 "gulp-clean": "0.4.0",
63 "husky": "7.0.2",
64 "jest": "27.2.5",
65 "nyc": "15.1.0",
66 "release-it": "14.11.6",
67 "ts-jest": "27.0.7",
68 "ts-node": "10.3.0",
69 "typescript": "4.3.5"
70 },
71 "peerDependencies": {
72 "typescript": "^3.4.5 || ^4.3.5"
73 },
74 "schematics": "./dist/collection.json",
75 "husky": {
76 "hooks": {
77 "commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
78 }
79 },
80 "nyc": {
81 "include": [
82 "src"
83 ],
84 "exclude": [
85 "node_modules",
86 "test"
87 ],
88 "extension": [
89 ".ts"
90 ],
91 "require": [
92 "ts-node/register"
93 ],
94 "reporter": [
95 "text-summary",
96 "html"
97 ],
98 "sourceMap": true,
99 "instrument": true
100 }
101}