-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
55 lines (55 loc) · 1.2 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
{
"name": "grunt-html2js",
"description": "Compiles AngularJS templates to JavaScript",
"version": "0.9.0",
"homepage": "https://github.com/rquadling/grunt-html2js",
"author": {
"name": "Karl Goldstein",
"email": "[email protected]"
},
"contributors": [
{
"name": "Richard Quadling",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/rquadling/grunt-html2js.git"
},
"bugs": {
"url": "https://github.com/rquadling/grunt-html2js/issues"
},
"license": "SEE LICENSE IN LICENSE-MIT",
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "^1.5.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "^4",
"grunt-coveralls": "^2",
"load-grunt-tasks": "^5",
"minimist": "^1.2.7"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"optionalDependencies": {
"pug": "^3"
},
"keywords": [
"gruntplugin"
],
"dependencies": {
"chokidar": "^3.5.3",
"grunt-cli": "^1.3.2",
"html-minifier": "^4",
"minimist": "^1.2.7"
}
}