-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "grunt-angular-templates",
"description": "Grunt build task to concatenate & register your AngularJS templates in the $templateCache",
"version": "1.2.0",
"homepage": "https://github.com/ericclemmons/grunt-angular-templates",
"author": {
"name": "Eric Clemmons",
"email": "eric@smarterspam.com"
},
"repository": {
"type": "git",
"url": "git://github.com/ericclemmons/grunt-angular-templates.git"
},
"bugs": {
"url": "https://github.com/ericclemmons/grunt-angular-templates/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ericclemmons/grunt-angular-templates/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "./node_modules/.bin/grunt"
},
"dependencies": {
"html-minifier": "~4.0.0"
},
"devDependencies": {
"grunt": "~0.4.0",
"grunt-cli": "~0.1.6",
"grunt-contrib-cssmin": "~0.14.0",
"grunt-contrib-clean": "~0.7.0",
"grunt-contrib-concat": "~0.5.1",
"grunt-contrib-jshint": "~0.12.0",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-uglify": "~0.11.0",
"grunt-usemin": "~3.1.1",
"grunt-contrib-copy": "~0.8.2"
},
"keywords": [
"gruntplugin",
"angular",
"template",
"templates",
"concat"
]
}