This repository has been archived by the owner on May 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.28 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
{
"name": "@red6/ng-feature-flags",
"version": "0.3.2",
"description": "Feature Flag module for Angular",
"scripts": {
"ng": "ng",
"prebuild": "rimraf dist",
"build": "ng-packagr",
"test": "ng test --code-coverage",
"lint": "ng lint --type-check",
"release": "standard-version",
"deploy": "npm run build && npm publish --access=public dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/red6/ng-feature-flags.git"
},
"main": "bundles/red6-ng-feature-flags.umd.js",
"keywords": [
"ng",
"ng2",
"angular",
"angular2",
"feature flag",
"feature switch"
],
"author": "Sebastian Mueller <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@angular/common": "^6.0.0 || ^7.0.0",
"@angular/core": "^6.0.0 || ^7.0.0",
"core-js": "^2.5.0"
},
"dependencies": {
"semver": "^5.6.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.8.0",
"@angular/cli": "^6.0.0",
"@angular/common": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@angular/platform-browser-dynamic": "^6.0.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-angular": "^7.1.2",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/node": "^8.0.0",
"@types/semver": "^5.5.0",
"codelyzer": "^4.4.4",
"core-js": "^2.5.7",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^2.0.5",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.4.3",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"ng-packagr": "^4.1.0",
"prettier": "^1.15.3",
"pretty-quick": "^1.8.0",
"rimraf": "^2.6.2",
"rxjs": "^6.3.3",
"standard-version": "^4.4.0",
"tslint": "^5.9.1",
"typescript": "^2.7.0",
"zone.js": "~0.8.26"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"scope-case": [
2,
"always",
"pascal-case"
]
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e",
"pre-commit": "pretty-quick --staged"
}
}
}