-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
62
63
64
{
"name": "ghost-inspector",
"version": "7.0.1",
"description": "Ghost Inspector CLI and API Library for Node.js",
"homepage": "https://github.com/ghost-inspector/node-ghost-inspector",
"author": {
"name": "Ghost Inspector",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "http://github.com/ghost-inspector/node-ghost-inspector.git"
},
"engines": {
"node": ">=12.0"
},
"scripts": {
"lint": "eslint .",
"test": "npm run test-unit && npm run test-cli && npm run test-integration",
"test-unit": "./node_modules/.bin/mocha test/*.js --bail",
"test-integration": "./node_modules/.bin/mocha test/integration/*.js --bail",
"test-cli": "./node_modules/.bin/mocha bin/spec.js --bail"
},
"main": "./index.js",
"bin": {
"ghost-inspector": "./bin/ghost-inspector"
},
"dependencies": {
"chalk": "^4.1.2",
"ngrok": "^4.3.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"yargs": "^17.3.1"
},
"devDependencies": {
"es-abstract": "^1.19.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"sinon": "^12.0.1"
},
"keywords": [
"ghost",
"inspector",
"ghost inspector",
"ghostinspector",
"test",
"testing",
"automated testing",
"browser testing",
"automated browser testing",
"selenium",
"cli",
"command line interface"
],
"license": "MIT",
"readmeFilename": "README.md"
}