forked from svtslv/nestjs-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.93 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
{
"name": "nestjs-modules",
"version": "1.0.4",
"description": "NestJS Modules CLI",
"author": "Sviatoslav H",
"license": "MIT",
"homepage": "https://github.com/svtslv/nestjs-modules",
"repository": {
"type": "git",
"url": "https://github.com/svtslv/nestjs-modules"
},
"keywords": [
"nest",
"nestjs",
"modules",
"cli"
],
"files": [
"dist"
],
"bin": {
"nestjs-modules": "./dist/modules.cli.js"
},
"preferGlobal": true,
"main": "dist/index.js",
"scripts": {
"fix": "rm -rf node_modules && rm package-lock.json && npm install",
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"test": "jest --config ./test/jest.config.json --runInBand",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prerelease": "npm run build",
"release": "release-it"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.1",
"@types/figlet": "^1.2.0",
"@types/jest": "25.1.4",
"@types/minimist": "^1.2.0",
"@types/netmask": "^1.0.30",
"@types/node": "^13.9.2",
"@types/prompts": "^2.0.5",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"reflect-metadata": "^0.1.13",
"release-it": "^13.1.1",
"supertest": "^4.0.2",
"ts-jest": "25.2.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.7.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.8.3"
},
"dependencies": {
"chalk": "^3.0.0",
"cross-spawn": "^7.0.1",
"figlet": "^1.3.0",
"minimist": "^1.2.5",
"prompts": "^2.3.2"
}
}