-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
87 lines (87 loc) · 2.14 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@theintern/digdug",
"version": "2.6.4-pre",
"description": "Dig Dug. A simple abstraction library for downloading and launching WebDriver service tunnels.",
"repository": {
"type": "git",
"url": "https://github.com/theintern/digdug.git"
},
"license": "BSD-3-Clause",
"dependencies": {
"@theintern/common": "~0.3.0",
"command-exists": "~1.2.9",
"decompress": "~4.2.1",
"tslib": "~2.3.0"
},
"devDependencies": {
"@theintern/dev": "^0.11.0",
"@types/command-exists": "^1.2.0",
"@types/decompress": "^4.2.4",
"@types/node": "^16.0.0",
"@types/semver": "^7.3.7",
"@types/shelljs": "^0.8.9",
"concurrently": "^6.2.0",
"execa": "^5.1.1",
"intern": "^4.9.1",
"lint-staged": "^11.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.3.2",
"semver": "^7.3.5",
"shelljs": "^0.8.4",
"ts-node": "^10.0.0"
},
"scripts": {
"build": "npm run clean && concurrently intern-dev-build intern-dev-api",
"ci": "intern-dev-build && intern",
"clean": "intern-dev-clean",
"devpack": "intern-dev-build && npm pack ./_build/src",
"lint": "intern-dev-lint",
"release": "intern-dev-release",
"test": "intern",
"watch": "intern-dev-build watch",
"precommit": "lint-staged",
"webdriver": "ts-node scripts/webdriver.ts",
"ghpages": "ts-node scripts/ghpages.ts"
},
"bugs": "https://github.com/theintern/digdug/issues",
"keywords": [
"javascript",
"test",
"functional",
"selenium",
"webdriver",
"sauce labs",
"browserstack",
"testingbot"
],
"homepage": "https://github.com/theintern/digdug",
"bin": {
"digdugEnvironments": "./bin/digdugEnvironments.js"
},
"lint-staged": {
"src/**/*.{ts,json,css}": [
"prettier --write"
],
"tests/**/*.{ts,json,css}": [
"prettier --write"
],
"*.ts": [
"prettier --write"
],
"{intern,tsconfig}.json": [
"prettier --write"
]
},
"pre-commit": "precommit",
"internDev": {
"configs": [
"tsconfig.json",
"tests/tsconfig.json"
],
"resources": {
"_build": [
"src/schemas/**"
]
}
}
}