-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "jasmine-suite-reporter",
"version": "1.0.7",
"description": "Simple suite Reporter for Jasmine 2",
"main": "reporter/index.js",
"scripts": {
"pretest": "npm install",
"lint": "eslint *.js test/**/*.js reporter/**/*.js",
"test-jasmine": "npm run lint && node jasmine.conf.js",
"test-karma": "karma start karma.conf.js --single-run"
},
"repository": {
"type": "git",
"url": "https://github.com/willyelm/jasmine-suite-reporter"
},
"keywords": [
"jasmine",
"karma",
"reporter",
"suite",
"protractor",
"unit",
"test"
],
"author": "Williams Medina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/willyelm/jasmine-suite-reporter/issues"
},
"homepage": "https://github.com/willyelm/jasmine-suite-reporter",
"dependencies": {
"colors": "1.1.2",
"jasmine": "^2.4.1",
"lodash": "^4.5.0",
"karma": "^0.13.22"
},
"devDependencies": {
"eslint": "^2.2.0",
"jasmine-core": "^2.4.1",
"karma-jasmine": "^0.3.7",
"karma-phantomjs-launcher": "^1.0.0",
"phantomjs-prebuilt": "^2.1.5"
}
}