-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "ng-pathfinder",
"version": "0.0.3",
"description": "Creates a list of all routes in an angular application. Paths coming from lazy loaded modules are also included.",
"main": "./src/index.js",
"bin": "./src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepublish": "npm run build"
},
"author": "Alexander Vakrilov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vakrilov/ng-pathfinder.git"
},
"bugs": {
"url": "https://github.com/vakrilov/ng-pathfinder/issues"
},
"homepage": "https://github.com/vakrilov/ng-pathfinder#readme",
"keywords": [
"angular",
"routing",
"ng"
],
"dependencies": {
"@angular/compiler": "~7.1.0",
"@angular/compiler-cli": "~7.1.0",
"@angular/core": "^7.2.4",
"chalk": "^2.4.1",
"minimist": "^1.2.0",
"ngast": "^0.2.4",
"rxjs": "~6.3.3",
"typescript": "^3.3.3"
},
"devDependencies": {
"@types/node": "^10.12.18",
"copy": "^0.3.2",
"rimraf": "^2.6.3"
}
}