-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "ghost-inspector-vsts-task-extension",
"version": "1.1.1",
"description": "Trigger your Ghost Inspector test suite in your Azure DevOps build.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ghost-inspector/ghost-inspector-azure-devops"
},
"scripts": {
"prepare": "npm run transpile",
"test": "npm run prepare && ./node_modules/ts-mocha/bin/ts-mocha tests/**/*.ts",
"transpile": "./node_modules/.bin/tsc -p ./"
},
"keywords": [
"ghost inspector",
"browser",
"testing",
"uat",
"qat"
],
"author": "Ghost Inspector team",
"license": "MIT",
"dependencies": {
"axios": "^0.25.0",
"https-proxy-agent": "^5.0.0",
"request": "^2.88.2",
"types": "^0.1.1",
"typescript": "^4.5.5",
"vsts-task-lib": "^2.7.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.14",
"@types/q": "^1.5.5",
"@types/sinon": "^10.0.9",
"mocha": "^9.2.0",
"sinon": "^13.0.1",
"ts-mocha": "^9.0.2"
}
}