-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.46 KB
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
{
"name": "ng-changedetector",
"version": "1.0.11",
"description": "Command-line tool to help you identify the components slowing down your Angular application",
"main": "lib/index.js",
"bin": {
"changedetector": "lib/index.js"
},
"types": "lib",
"scripts": {
"build": "tsc -p .",
"build:publish": "npm run build && npm publish",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abomadev/changedetector.git"
},
"keywords": [
"changedetector",
"ng-changedetector",
"performance",
"angular performance",
"change detection",
"onPush",
"on push",
"angular",
"ng",
"angular tools",
"ng tools",
"performance tools"
],
"author": "Aboma Kelly",
"license": "MIT",
"bugs": {
"url": "https://github.com/abomadev/changedetector/issues"
},
"homepage": "https://github.com/abomadev/changedetector#readme",
"dependencies": {
"glob": "^7.1.7",
"line-reader": "^0.4.0",
"n-readlines": "^1.0.1",
"replace-in-file": "^6.2.0",
"yargs": "^13.2.4"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/line-reader": "0.0.33",
"@types/n-readlines": "^1.0.1",
"@types/node": "^15.6.1",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"typescript": "^4.3.2"
}
}