1 | {
|
2 | "name": "schematics-utilities",
|
3 | "version": "2.0.3",
|
4 | "author": "Nitay Neeman",
|
5 | "description": "🛠️ Useful exported utilities for working with Schematics",
|
6 | "homepage": "https://github.com/nitayneeman/schematics-utilities",
|
7 | "license": "MIT",
|
8 | "repository": {
|
9 | "type": "git",
|
10 | "url": "https://github.com/nitayneeman/schematics-utilities.git"
|
11 | },
|
12 | "keywords": [
|
13 | "schematic",
|
14 | "schematics",
|
15 | "utility",
|
16 | "utilities",
|
17 | "util",
|
18 | "utils",
|
19 | "angular",
|
20 | "devkit",
|
21 | "material"
|
22 | ],
|
23 | "main": "./dist/index.js",
|
24 | "types": "./dist/index.d.ts",
|
25 | "scripts": {
|
26 | "build": "tsc -p tsconfig.json",
|
27 | "build:docs": "typedoc --options ./.typedoc.json",
|
28 | "clean": "rm -rf ./dist",
|
29 | "clean:docs": "rm -rf ./docs",
|
30 | "format": "prettier --write '**/*.ts' '**/*.json'",
|
31 | "format:staged": "pretty-quick --staged",
|
32 | "precommit": "npm run format:staged",
|
33 | "prepublishOnly": "npm run clean && npm run build",
|
34 | "publish:docs": "./scripts/publish-docs.sh",
|
35 | "test:sanity": "./scripts/test-sanity.sh"
|
36 | },
|
37 | "dependencies": {
|
38 | "@angular-devkit/core": "^8.3.8",
|
39 | "@angular-devkit/schematics": "^8.3.8",
|
40 | "@schematics/angular": "^8.3.8",
|
41 | "@schematics/update": "^0.803.8",
|
42 | "rxjs": "^6.4.0",
|
43 | "typescript": "^3.6.3"
|
44 | },
|
45 | "optionalDependencies": {
|
46 | "parse5": "^5.1.0"
|
47 | },
|
48 | "devDependencies": {
|
49 | "@angular-devkit/schematics-cli": "^0.803.21",
|
50 | "@types/jasmine": "^3.4.2",
|
51 | "@types/node": "^8.0.31",
|
52 | "husky": "^3.0.8",
|
53 | "jasmine": "^3.5.0",
|
54 | "prettier": "^1.18.2",
|
55 | "pretty-quick": "^1.11.1",
|
56 | "typedoc": "^0.15.0"
|
57 | }
|
58 | }
|