This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "@briebug/mat-dialog-schematic",
"version": "1.0.1",
"description": "A schematic for generating mat dialog components",
"repository": "briebug/mat-dialog-schematic",
"bugs": "https://github.com/briebug/mat-dialog-schematic/issues",
"homepage": "https://github.com/briebug/mat-dialog-schematic",
"main": "src/mat-dialog/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:clean:launch": "yarn build && yarn clean:launch",
"clean": "git checkout HEAD -- sandbox && git clean -f -d sandbox",
"clean:launch": "yarn clean && yarn launch",
"launch": "cd sandbox && ng g @briebug/mat-dialog-schematic:mat-dialog test-name",
"link:schematic": "yarn link && cd sandbox && yarn link @briebug/mat-dialog-schematic",
"publish": "np",
"test": "yarn build:clean:launch && yarn test:sandbox && yarn clean",
"test:sandbox": "cd sandbox && yarn lint && yarn test && yarn e2e && yarn build",
"test:unit": "yarn build && jasmine src/**/*_spec.js"
},
"keywords": [
"schematics",
"angular",
"material",
"dialog"
],
"author": "Briebug",
"license": "MIT",
"schematics": "./src/collection.json",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@angular-devkit/core": "^7.2.3",
"@angular-devkit/schematics": "^7.2.3",
"@angular/cdk": "^7.2.2",
"@angular/material": "^7.2.2",
"@schematics/angular": "^7.2.3",
"rxjs": "^6.3.3"
},
"devDependencies": {
"@types/jasmine": "^3.3.7",
"@types/node": "^10.12.18",
"husky": "1.3.1",
"jasmine": "^3.3.1",
"lint-staged": "8.1.1",
"prettier": "1.16.1",
"typescript": "~3.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md,ts}": [
"git add"
]
}
}