-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "grunt-template-jasmine-istanbul",
"description": "Code coverage template mix-in for grunt-contrib-jasmine, using istanbul",
"version": "0.6.0",
"keywords": [
"grunt",
"template",
"jasmine",
"istanbul"
],
"author": {
"name": "maenu"
},
"contributors": [
"Gyandeep Singh <[email protected]>",
"Radu Micu <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/maenu/grunt-template-jasmine-istanbul.git"
},
"main": "src/main/js/template.js",
"dependencies": {
"istanbul": "^0.4.3",
"lodash.template": "^4.2.5"
},
"peerDependencies": {
"grunt": "^1.0.4",
"grunt-contrib-jasmine": "^2.0.3"
},
"devDependencies": {
"eslint-config-ideal": "^1.0.0",
"grunt": "^1.0.4",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jasmine": "^2.0.3",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-contrib-yuidoc": "^1.0.0",
"gruntify-eslint": "^1.0.0"
},
"scripts": {
"test": "grunt test",
"lint": "grunt check"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/maenu/grunt-template-jasmine-istanbul/master/LICENSE.txt"
}
]
}