-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.33 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": "warlock-spell-angular",
"version": "1.0.0-alpha.1",
"description": "An addon to add AngularJS support to the Warlock spell for managing client-side webapps.",
"homepage": "https://github.com/ngbp/spell-angular",
"author": {
"name": "Warlock Team",
"url": "http://getwarlock.com"
},
"repository": {
"type": "git",
"url": "git://github.com/ngbp/spell-angular.git"
},
"bugs": {
"url": "https://github.com/ngbp/spell-angular"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ngbp/spell-angular/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 0.10.0"
},
"peerDependencies": {
"warlock-spell-webapp": "~1.0.0"
},
"keywords": [
"warlockplugin",
"warlockspell"
],
"warlock": {
"globs": {
"source": {
"templates": [
"<%= paths.source_app %>/**/*.tpl.html"
],
"html": [
"!<%= paths.source_app %>/**/*.tpl.html"
]
}
},
"tasks": {
"angular": {
"tplCache": {
"filename": "templates.js",
"standalone": true,
"root": "@tpl",
"module": "templates"
},
"annotate": {
"add": true
}
}
}
},
"dependencies": {
"gulp-angular-templatecache": "^1.1.3",
"ng-annotate": "^0.8.0"
}
}