-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1021 Bytes
/
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
{
"name": "grunt-appcache",
"description": "Grunt task for generating an HTML5 AppCache manifest.",
"version": "0.2.1",
"homepage": "https://github.com/jmc-88/grunt-appcache/",
"author": {
"name": "Daniele Cocca",
"email": "daniele.cocca@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jmc-88/grunt-appcache.git"
},
"bugs": {
"url": "https://github.com/jmc-88/grunt-appcache/issues"
},
"license": "MIT",
"main": "Gruntfile.js",
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"test": "grunt verify --verbose"
},
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-google": "^0.12.0",
"grunt": "^1.0.4",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-nodeunit": "^4.0.0",
"grunt-eslint": "^24.0.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"grunt",
"gruntplugin",
"html5",
"manifest",
"appcache"
],
"dependencies": {
"cheerio": "^1.0.0-rc.10"
}
}