forked from emilol/angular-crumbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.74 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
{
"name": "angular-crumbs",
"version": "3.0.1",
"description": "A route-based Angular breadcrumb component and service. Allows breadcrumb descriptions to be set based on route data, or as the result of an API call.",
"main": "index.js",
"files": [
"style.css"
],
"scripts": {
"lint": "tslint \"src/**/*.ts\" --project tsconfig.json --type-check",
"clean": "rimraf .tmp && rimraf dist",
"transpile": "ngc",
"package": "rollup -c",
"minify": "uglifyjs dist/bundles/angular-crumbs.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/angular-crumbs.umd.min.js",
"copy": "cpx \"./package-dist.json\" dist && cpx \"./README.md\" dist && cpx \"./style.css\" dist && renamer --find \"package-dist.json\" --replace \"package.json\" ./dist/*",
"build": "npm run clean && npm run transpile && npm run package && npm run minify && npm run copy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilol/angular-crumbs.git"
},
"keywords": [
"angular",
"angular2",
"breadcrumb"
],
"author": "Emily Taylor",
"license": "MIT",
"bugs": {
"url": "https://github.com/emilol/angular-crumbs/issues"
},
"homepage": "https://github.com/emilol/angular-crumbs#readme",
"dependencies": {
"@angular/common": "^4.2.4",
"@angular/core": "^4.2.4",
"@angular/platform-browser": "^4.2.4",
"@angular/router": "^4.2.4",
"rxjs": "^5.0.3",
"zone.js": "^0.8.12"
},
"devDependencies": {
"@angular/compiler": "^4.2.4",
"@angular/compiler-cli": "^4.2.4",
"codelyzer": "^3.1.1",
"cpx": "^1.5.0",
"renamer": "^0.6.1",
"rimraf": "^2.5.4",
"rollup": "^0.43.0",
"tslint": "^5.4.3",
"typescript": "^2.4.1",
"uglify-js": "^3.0.20"
}
}