forked from ramonornela/configuration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.75 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
{
"name": "@mbamobi/configuration",
"version": "4.0.1",
"description": "Manager configuration project in file json, database or static object",
"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",
"postpublishPackage": "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",
"@types/jasmine": "2.2.33",
"codelyzer": "2.0.0-beta.4",
"commitizen": "^2.8.6",
"conventional-changelog-cli": "^1.2.0",
"cz-conventional-changelog": "^1.2.0",
"fluid-publish": "1.1.0",
"github": "0.2.4",
"husky": "^0.11.9",
"jasmine": "2.5.2",
"nyc": "10.0.0",
"reflect-metadata": "0.1.8",
"rimraf": "^2.5.4",
"rxjs": "~5.5.0",
"tslint": "4.3.1",
"tslint-eslint-rules": "3.2.3",
"tslint-ionic-rules": "0.0.8",
"typescript": "~2.4.2",
"zone.js": "~0.8.18"
},
"peerDependencies": {
"@angular/core": "^5.0.0",
"@angular/http": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbamobi/configuration.git"
},
"keywords": [
"ionic",
"angular",
"configuration",
"environment",
"url",
"http",
"headers",
"get",
"post"
],
"author": "Ramon Ornelas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbamobi/configuration/issues"
},
"homepage": "https://github.com/mbamobi/configuration"
}