-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1.31 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
{
"name": "@nestjsplus/dyn-schematics",
"version": "1.0.12",
"description": "NestJS Dynamic Module Schematics for @nestjs/cli",
"author": "John Biundo <[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 -ar ./src/schematics/* lib/schematics && mkdir -p lib/utils && cp -ar ./src/utils/* lib/utils && cp ./src/defaults.ts lib",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestjsplus/dyn-schematics"
},
"contributors": [
"John Biundo"
],
"bugs": {
"url": "https://github.com/nestjsplus/dyn-schematics/issues"
},
"homepage": "https://github.com/nestjsplus/dyn-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",
"gulp": "4.0.1",
"jest": "24.9.0",
"nyc": "14.1.1",
"ts-jest": "24.1.0",
"tslint": "5.20.0"
},
"schematics": "./collection.json"
}