-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.03 KB
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
{
"name": "log2qtest",
"version": "0.1.7",
"description": "Submit automation logs (JUnit) to qTest qtestnet.com",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel -d bin ./src",
"prepublish": "npm run build",
"watch": "rm -rf bin && babel -w --out-dir bin ./src"
},
"bin": {
"log2qtest": "./bin/index.js"
},
"keywords": [
"automation log",
"qTest",
"junit"
],
"author": {
"name": "Trong Le",
"email": "vantrong2210@gmail.com",
"url": "https://github.com/gunivan"
},
"repository": {
"type": "git",
"url": "git@github.com:gunivan/log2qtest.git"
},
"license": "MIT",
"dependencies": {
"chalk": "^1.1.1",
"commander": "^2.9.0",
"glob": "^7.1.1",
"lodash": "^4.17.4",
"node-native-zip": "^1.1.0",
"node-rest-client": "^3.0.3",
"progress": "^1.1.8",
"unescape": "^0.2.0",
"xml2js": "^0.4.17"
},
"devDependencies": {
"babel-cli": "^6.1.2",
"babel-preset-es2015": "^6.1.2"
}
}