-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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
{
"name": "grunt-js-test",
"version": "2.0.3",
"description": "Grunt task for running client-side, mocha-based unit tests in PhantomJS with code coverage reports",
"keywords": [
"grunt",
"gruntplugin",
"mocha",
"unit",
"test",
"coverage",
"report",
"phantomjs"
],
"homepage": "https://github.com/vistaprint/grunt-js-test",
"bugs": {
"url": "https://github.com/vistaprint/grunt-js-test/issues",
"email": "[email protected]"
},
"license": "Apache-2.0",
"author": "Vistaprint (https://www.vistaprint.com/)",
"contributors": [
"Benjamin Hutchins <[email protected]> (https://github.com/benhutchins/)"
],
"files": [
"README.md",
"tasks",
"views"
],
"repository": {
"type": "git",
"url": "https://github.com/vistaprint/grunt-js-test.git"
},
"engines": {
"node": "*"
},
"scripts": {
"test": "mocha tests/*.unittests.js"
},
"dependencies": {
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"express": "^4.16.3",
"istanbul": "^0.4.5",
"lodash": "^4.17.5",
"minimatch": "^3.0.4",
"mocha": "^5.0.5",
"mocha-headless-chrome": "^1.8.3",
"moment": "^2.22.0",
"pug": "^2.0.3",
"request": "^2.85.0",
"sinon": "^4.5.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"devDependencies": {
"grunt": "^1.0.3",
"grunt-eslint": "^20.1.0"
}
}