-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 931 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
{
"name": "gemini-allure-plugin",
"version": "0.0.1",
"description": "Allure report generating plugin for Gemini",
"keywords": [
"gemini",
"gemini-plugin",
"Allure",
"report"
],
"main": "lib/plugin.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gemini-testing/gemini-tunnel/"
},
"scripts": {
"test": "npm run lint && npm run unit-test",
"lint": "jshint . && jscs .",
"unit-test": "istanbul test _mocha --recursive test/lib"
},
"dependencies": {
"inherit": "^2.2.2",
"lodash": "^3.10.1",
"q": "^1.4.1",
"allure-js-commons": "1.1.1"
},
"devDependencies": {
"chai": "^3.3.0",
"chai-as-promised": "^5.1.0",
"coveralls": "^2.11.4",
"istanbul": "^0.3.20",
"jscs": "^2.1.1",
"jshint": "^2.8.0",
"mocha": "^2.3.3",
"qemitter": "^1.0.0",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0"
}
}