-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 3.3 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@mbamobi/http-plugins-ionic",
"version": "3.0.1",
"description": "Plugins HTTP additionals to projects ionic",
"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 && npm run copy:sass",
"build:qa": "npm run lint && npm run test && 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",
"copy:sass": "cpx ./src/components/*.scss ./dist/esm/components && cpx ./src/components/*.scss ./dist/umd/components",
"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": "4.1.3",
"@angular/compiler": "4.1.3",
"@angular/compiler-cli": "4.1.3",
"@angular/core": "4.1.3",
"@angular/forms": "4.1.3",
"@angular/http": "4.1.3",
"@angular/platform-browser": "4.1.3",
"@angular/platform-browser-dynamic": "4.1.3",
"@angular/platform-server": "4.1.3",
"@ionic-native/core": "^3.4.4",
"@ionic-native/network": "^3.4.4",
"@mbamobi/configuration": "^3.0.0",
"@mbamobi/http": "^3.0.0",
"@mbamobi/url-resolver": "^3.0.0",
"@ramonornela/jsonpath": "0.2.10",
"@types/jasmine": "2.2.33",
"codelyzer": "^3.0.1",
"commitizen": "^2.8.6",
"conventional-changelog-cli": "^1.2.0",
"cpx": "1.5.0",
"cz-conventional-changelog": "^1.2.0",
"fluid-publish": "1.1.0",
"github": "0.2.4",
"husky": "^0.11.9",
"ionic-angular": "^3.5.0",
"jasmine": "2.5.2",
"nyc": "10.0.0",
"rimraf": "^2.5.4",
"rxjs": "5.1.1",
"tslint": "^5.2.0",
"tslint-eslint-rules": "4.0.0",
"typescript": "~2.3.3",
"zone.js": "^0.8.4"
},
"peerDependencies": {
"@angular/core": "^4.1.3",
"@angular/http": "^4.1.3",
"@ionic-native/network": "^3.4.4",
"@mbamobi/http": "^3.0.0",
"ionic-angular": "^3.0.0",
"rxjs": "5.1.1",
"zone.js": "^0.8.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbamobi/http-plugins-ionic.git"
},
"keywords": [
"ionic",
"angular",
"url",
"http",
"headers",
"get",
"post"
],
"author": "Ramon Ornelas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbamobi/http-plugins-ionic/issues"
},
"homepage": "https://github.com/mbamobi/http-plugins-ionic",
"dependencies": {
"@ramonornela/jsonpath": "0.2.10"
}
}