forked from ramonornela/url-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.57 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@mbamobi/url-resolver",
"version": "4.0.0",
"description": "Configuration routes to object Http of the Angular2",
"main": "dist/umd/index.js",
"typings": "dist/esm/index.d.ts",
"module": "dist/esm/index.js",
"scripts": {
"build": "npm run clean && npm run build:umd && npm run build:esm",
"build:qa": "npm run lint && npm run build",
"build:esm": "ngc -p tsconfig-esm.json",
"build:test": "ngc -p tsconfig-test.json",
"build:umd": "ngc",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "git-cz",
"clean": "rimraf ./dist",
"cover": "nyc report --reporter=lcov npm test",
"doc": "typedoc --tsconfig tsconfig-esm.json --options typedoc.json src/",
"gh:release": "node ./scripts/git-release",
"jasmine": "jasmine JASMINE_CONFIG_PATH=test/jasmine-config.json",
"lint": "tslint -c ./tslint.json --project ./tsconfig-esm.json",
"nightly": "npm run build:qa && node ./scripts/publish-nightly",
"prepush": "npm run lint",
"package:json": "node ./scripts/package-publish",
"publishPackage": "npm run build:qa && npm run changelog && npm run package:json --prepare && npm publish --access public && npm run package:json --restore",
"test": "npm run clean && npm run build:test && npm run jasmine"
},
"files": [
"dist/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"devDependencies": {
"@angular/common": "~5.0.0",
"@angular/compiler": "~5.0.0",
"@angular/compiler-cli": "~5.0.0",
"@angular/core": "~5.0.0",
"@angular/http": "~5.0.0",
"@angular/platform-browser": "~5.0.0",
"@angular/platform-browser-dynamic": "~5.0.0",
"@mbamobi/configuration": "^4.0.0",
"codelyzer": "^4.0.1",
"conventional-changelog-cli": "^1.3.5",
"cz-conventional-changelog": "^2.1.0",
"rimraf": "^2.6.2",
"rxjs": "~5.5.0",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-ionic-rules": "0.0.11",
"typescript": "~2.4.2",
"zone.js": "~0.8.18"
},
"peerDependencies": {
"@angular/core": "~5.0.0",
"@angular/http": "~5.0.0",
"@mbamobi/configuration": "^4.0.0",
"typescript": "^2.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbamobi/url-resolver.git"
},
"keywords": [
"ionic",
"angular",
"route",
"url",
"http",
"headers",
"get",
"post"
],
"author": "Ramon Ornelas <ramon.ornela@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbamobi/url-resolver/issues"
},
"homepage": "https://github.com/mbamobi/url-resolver"
}