-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.68 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
{
"name": "@ng-vim/devtools",
"version": "1.1.0",
"description": "A schematics to integrate husky with prettier and commitlint in your angular workspace",
"license": "MIT",
"schematics": "./collection.json",
"author": {
"name": "Vimal Patel",
"email": "[email protected]",
"url": "https://github.com/patelvimal/"
},
"files":[
"dist",
"collection.json"
],
"scripts": {
"prebuild": "rimraf dist/",
"build": "tsc -p tsconfig.json",
"test": "npm run build && jasmine src/**/*_spec.js",
"copy:files": "gulp copyFiles --silent",
"postbuild": "npm run copy:files",
"format": "pretty-quick --staged",
"prepare": "husky install"
},
"ng-add": {
"save": false
},
"keywords": [
"npm",
"schematics",
"schematics-cli",
"angular-devtools"
],
"repository": {
"type": "git",
"url": "https://github.com/patelvimal/schematics-devtools.git"
},
"homepage": "https://github.com/patelvimal/schematics-devtools#readme",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/patelvimal/schematics-devtools/issues"
},
"dependencies": {
"@angular-devkit/core": "^12.2.10",
"@angular-devkit/schematics": "^12.2.10",
"@schematics/angular": "^12.2.10",
"typescript": "~4.3.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jasmine": "~3.8.0",
"@types/node": "^12.11.1",
"gulp": "^4.0.2",
"husky": "^6.0.0",
"jasmine": "^3.5.0",
"karma": "^6.3.4",
"latest-package-version": "^1.0.3",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2"
}
}