-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) 路 2.24 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) 路 2.24 KB
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
{
"name": "@necord/schematics",
"description": "A collection of schematics for Necord projects with NestJS",
"version": "1.3.8",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.build.json",
"postbuild": "npm run copy:collection && npm run copy:lib",
"copy:collection": "copyfiles --up 1 src/collection.json dist && copyfiles --up 1 src/**/schema.json dist",
"copy:lib": "copyfiles --up 1 src/**/files/**/* dist",
"prepublish:npm": "npm run build",
"publish:npm": "release-it",
"prepublish:dev": "npm run build",
"publish:dev": "npm publish --access public --tag dev",
"prepare": "husky",
"format": "prettier --write \"{src,apps,libs,test}/**/*.ts\"",
"lint": "eslint --ignore-pattern .gitignore \"{src,apps,libs,test}/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:ci": "jest --ci --passWithNoTests --coverage"
},
"schematics": "./dist/collection.json",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/necord"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*",
"*.md"
],
"publishConfig": {
"access": "public"
},
"author": "Alexey Filippov <socket.someone@gmail.com>",
"license": "MIT",
"keywords": [
"schematics",
"nest",
"nestjs-cli",
"nestjs",
"cli",
"inquirer",
"necord"
],
"dependencies": {
"@nestjs/schematics": "11.0.9",
"rxjs": "7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@commitlint/cli": "20.4.2",
"@commitlint/config-angular": "20.4.2",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^10.0.1",
"@nestjs/testing": "^11.1.0",
"@release-it/conventional-changelog": "^10.0.0",
"@types/jest": "^30.0.0",
"@types/node": "25.3.1",
"copyfiles": "2.4.1",
"eslint": "^10.0.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^17.0.0",
"husky": "9.1.7",
"jest": "^30.0.0",
"prettier": "3.8.1",
"release-it": "19.2.4",
"rimraf": "6.1.3",
"ts-jest": "^29.3.2",
"typescript": "5.9.3",
"typescript-eslint": "^8.21.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/necordjs/schematics.git"
},
"homepage": "https://github.com/necordjs/schematics.git#readme"
}