-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.07 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
{
"name": "ng-builders",
"version": "latest",
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"author": {
"email": "scarletflash.dev@gmail.com",
"name": "Fedor Usakov",
"url": "https://usakov.dev/"
},
"bugs": {
"email": "scarletflash.dev@gmail.com",
"url": "https://github.com/ScarletFlash/ng-builders/issues"
},
"description": "Multi-purpose CLI Builders for Angular",
"homepage": "https://github.com/ScarletFlash/ng-builders#readme",
"keywords": [
"Angular",
"Angular Builders",
"Angular Architect",
"Angular CLI",
"ng",
"lint",
"linter",
"dependencies",
"circular",
"circular dependencies"
],
"repository": {
"type": "git",
"url": "https://github.com/ScarletFlash/ng-builders.git"
},
"icon": "./assets/icon.png",
"scripts": {
"build": "ts-node ./do-build.ts",
"test": "npm run test:functional",
"test:functional": "ng run with-circular-dependencies:lint-circular-deps",
"prettier:check": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --check ./**/*.{json,js,ts}",
"prettier:format": "prettier --loglevel log --config ./.prettierrc --ignore-path ./.prettierignore --write ./**/*.{json,js,ts}",
"cspell:check": "cspell lint './**/*.*' --config cspell.json"
},
"dependencies": {
"@angular-devkit/architect": "~0.1300.0",
"@angular-devkit/core": "^13.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.2.2",
"@angular/cli": "^13.0.0",
"@angular/common": "^13.0.0",
"@angular/compiler": "^13.0.0",
"@angular/compiler-cli": "^13.0.0",
"@angular/core": "^13.0.0",
"@angular/platform-browser": "^13.0.0",
"@angular/platform-browser-dynamic": "^13.0.0",
"@npm/types": "1.0.1",
"@types/madge": "^5.0.0",
"@types/node": "^16.0.0",
"cspell": "^5.0.0",
"esbuild": "^0.14.0",
"madge": "^5.0.0",
"prettier": "latest",
"rxjs": "^7.4.0",
"ts-node": "^10.0.0",
"tslib": "^2.3.0",
"typescript": "<4.5.0",
"typescript-json-schema": "^0.50.0",
"zone.js": "~0.11.0"
}
}