-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
105 lines (105 loc) · 4.08 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "ngx-pug-builders",
"description": "Angular Pug Builders",
"version": "17.0.1",
"homepage": "https://github.com/lekhmanrus/ngx-pug-builders/",
"bugs": {
"url": "https://github.com/lekhmanrus/ngx-pug-builders/issues",
"email": "[email protected]"
},
"author": "Ruslan Lekhman <[email protected]> (https://github.com/lekhmanrus)",
"contributors": [],
"repository": "git://github.com/lekhmanrus/ngx-pug-builders.git",
"license": "MIT",
"readme": "https://github.com/lekhmanrus/ngx-pug-builders/blob/master/README.md",
"main": "dist/index.js",
"files": [
"dist/**",
"builders.json"
],
"builders": "builders.json",
"schematics": "./dist/schematics/collection.json",
"ng-add": {
"save": "devDependencies"
},
"scripts": {
"prepare": "is-ci || husky install",
"prebuild": "shx rm -rf ./dist",
"build": "npm-run-all --parallel build:lib build:schematics",
"build:lib": "tsc",
"postbuild:lib": "npm run copy:lib:schemes",
"copy:lib:schemes": "npm-run-all --parallel copy:lib:schemes:browser copy:lib:schemes:dev-server copy:lib:schemes:extract-i18n copy:lib:schemes:karma copy:lib:schemes:server",
"copy:lib:schemes:browser": "shx cp ./node_modules/@angular-devkit/build-angular/src/builders/browser/schema.json ./dist/browser",
"copy:lib:schemes:dev-server": "shx cp ./node_modules/@angular-devkit/build-angular/src/builders/dev-server/schema.json ./dist/dev-server",
"copy:lib:schemes:extract-i18n": "shx cp ./node_modules/@angular-devkit/build-angular/src/builders/extract-i18n/schema.json ./dist/extract-i18n",
"copy:lib:schemes:karma": "shx cp ./node_modules/@angular-devkit/build-angular/src/builders/karma/schema.json ./dist/karma",
"copy:lib:schemes:server": "shx cp ./node_modules/@angular-devkit/build-angular/src/builders/server/schema.json ./dist/server",
"build:schematics": "tsc -p tsconfig.schematics.json",
"postbuild:schematics": "npm-run-all --parallel fix:schematics:dist copy:schematics:collection",
"fix:schematics:dist": "npm run move:schematics:dist && npm run clean:schematics:dist",
"move:schematics:dist": "shx mv ./dist/schematics/src/schematics/ng-add ./dist/schematics/ng-add",
"clean:schematics:dist": "shx rm -rf ./dist/schematics/src",
"copy:schematics:collection": "shx cp ./src/schematics/collection.json ./dist/schematics/collection.json",
"release": "standard-version",
"commitlint": "commitlint",
"lint": "eslint ."
},
"private": false,
"keywords": [
"angular",
"ngx",
"ng",
"pug",
"jade",
"builder",
"builders",
"schematics",
"template"
],
"dependencies": {
"apply-loader": ">=2.0.0",
"ora": "5.4.1",
"simple-pug-loader": ">=0.2.1"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1700.2",
"@angular-devkit/build-angular": "^17.0.2",
"@angular-devkit/core": "^17.0.2",
"@angular-devkit/schematics": "^17.0.2",
"@angular/compiler": "^17.0.4",
"@angular/compiler-cli": "^17.0.4",
"@angular/localize": "^17.0.4",
"@commitlint/cli": ">=18.4.3",
"@commitlint/config-conventional": ">=18.4.3",
"@commitlint/format": ">=18.4.3",
"@schematics/angular": "^17.0.2",
"@types/cosmiconfig": "^6.0.0",
"@types/node": ">=20.9.3",
"@typescript-eslint/eslint-plugin": ">=6.12.1-alpha.1",
"@typescript-eslint/parser": ">=6.12.1-alpha.1",
"conventional-changelog-angular": ">=7.0.0",
"cosmiconfig": "^8.3.6",
"eslint": ">=8.54.0",
"eslint-import-resolver-typescript": ">=3.6.1",
"eslint-plugin-import": ">=2.29.0",
"eslint-plugin-prefer-arrow": ">=1.2.3",
"eslint-plugin-unicorn": ">=49.0.0",
"husky": "^8.0.3",
"is-ci": ">=3.0.1",
"karma": ">=6.4.2",
"npm-run-all": "^4.1.5",
"pug": "^3.0.2",
"shx": "^0.3.4",
"standard-version": ">=9.5.0",
"ts-node": ">=11.0.0-beta.1",
"typescript": "~5.2.2",
"webpack": "^5.89.0",
"webpack-merge": "^5.10.0"
},
"peerDependencies": {
"@angular-devkit/build-angular": "^17.0.0",
"@angular/compiler-cli": "^17.0.0",
"pug": "^3.0.2",
"typescript": "^5.2.2"
}
}