-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.52 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
{
"name": "nestjs-app-schematics",
"version": "1.2.0",
"description": "NestJS App Module Schematics for @nestjs/cli",
"author": "James Black <[email protected]>",
"license": "MIT",
"main": "index.js",
"files": [
"lib/**/*",
"collection.json"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run move && tsc -p tsconfig.json",
"move": "rm -rf lib && mkdir -p lib/schematics && cp -R ./src/schematics/* lib/schematics && mkdir -p lib/utils && cp -R ./src/utils/* lib/utils && cp ./src/defaults.ts lib",
"prepare": "npm run build",
"npm:check": "npm-check --skip-unused",
"npm:update": "npm-check --update --skip-unused",
"changelog": "changelog-maker"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesblackjr/nestjs-app-schematics"
},
"contributors": [
"James Black"
],
"bugs": {
"url": "https://github.com/jamesblackjr/nestjs-app-schematics/issues"
},
"homepage": "https://github.com/jamesblackjr/nestjs-app-schematics/#README",
"readmeFilename": "README.md",
"dependencies": {
"@angular-devkit/core": "8.3.4",
"@angular-devkit/schematics": "8.3.4",
"ts-morph": "^4.0.0",
"typescript": "3.4.5"
},
"devDependencies": {
"@types/jest": "23.3.14",
"@types/node": "10.14.18",
"changelog-maker": "^2.3.0",
"gulp": "4.0.1",
"jest": "24.9.0",
"npm-check": "^5.9.0",
"nyc": "14.1.1",
"ts-jest": "24.1.0",
"tslint": "5.20.0"
},
"schematics": "./collection.json"
}