forked from michaeltaranto/angular-feature-flags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.47 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
{
"name": "angular-feature-flags",
"title": "Angular Feature Flags",
"version": "1.4.0",
"description": "Feature Flag module for Angular JS apps",
"main": "dist/featureFlags.js",
"keywords": [
"angular",
"feature flag",
"feature switch"
],
"homepage": "https://github.com/mjt01/angular-feature-flags",
"bugs": "https://github.com/mjt01/angular-feature-flags/issues",
"repository": {
"type": "git",
"url": "https://github.com/mjt01/angular-feature-flags.git"
},
"author": {
"name": "Michael Taranto",
"homepage": "https://github.com/mjt01"
},
"contributors": [
{
"name": "Mark Dalgleish",
"homepage": "https://github.com/markdalgleish"
}
],
"licenses": [
{
"type": "MIT",
"url": "http://mjt01.mit-license.org"
}
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "gulp",
"coveralls": "gulp coveralls"
},
"devDependencies": {
"gh-pages": "^0.2.0",
"gulp": "^3.6.0",
"gulp-clean": "^0.2.4",
"gulp-concat": "^2.2.0",
"gulp-connect": "^2.0.5",
"gulp-coveralls": "^0.1.2",
"gulp-eslint": "^1.0.0",
"gulp-header": "^1.0.2",
"gulp-karma": "0.0.4",
"gulp-ng-annotate": "^0.3.3",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^0.2.1",
"gulp-util": "^3.0.1",
"gulp-wrap": "^0.3.0",
"karma": "^0.12.9",
"karma-coverage": "~0.1.5",
"karma-jasmine": "^0.1.5",
"karma-phantomjs-launcher": "^0.1.4",
"opn": "^0.1.1"
}
}