-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
90 lines (90 loc) · 2.12 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
88
89
90
{
"name": "airtap",
"version": "5.0.0",
"description": "Run TAP unit tests in 1789+ browsers",
"main": "lib/airtap.js",
"author": "Roman Shtylman <[email protected]>",
"license": "MIT",
"bin": {
"airtap": "./bin/airtap.js"
},
"scripts": {
"test": "standard && hallmark && npm run test:unit",
"test:unit": "cross-env DEBUG=airtap* nyc node test",
"fix:md": "hallmark fix",
"fix:js": "standard --fix"
},
"files": [
"bin",
"client",
"lib",
"test/integration",
"CHANGELOG.md",
"CONTRIBUTING.md",
"UPGRADING.md"
],
"dependencies": {
"@airtap/browserify-istanbul": "^4.0.0",
"airtap-default": "^1.0.0",
"airtap-multi": "^1.0.0",
"browserify": "^17.0.1",
"bruce-millis-option": "^1.0.0",
"compression": "^1.7.1",
"debug": "^4.1.0",
"engine.io": "^6.1.0",
"engine.io-client": "^6.1.1",
"express": "^4.17.0",
"find-nearest-file": "^1.1.0",
"globs-to-files": "^1.0.0",
"http-proxy": "^1.18.1",
"humanize-duration": "^3.23.1",
"js-yaml": "^4.0.0",
"load-script": "^2.0.0",
"make-promises-safe": "^5.1.0",
"maybe-combine-errors": "^1.0.0",
"minimist": "^1.2.5",
"nanoresource": "^1.3.0",
"nanoresource-collection": "^1.0.0",
"on-stream-close": "^1.0.0",
"readable-stream": "^4.5.2",
"run-parallel-settled": "^1.0.1",
"server-destroy": "^1.0.1",
"shell-quote": "^1.7.0",
"tap-completed": "^2.0.0",
"thunky-with-args": "^1.0.0",
"transient-error": "^1.0.0",
"uuid": "^8.3.0",
"watchify": "^4.0.0"
},
"devDependencies": {
"abstract-browser": "^1.0.0",
"cross-env": "^7.0.2",
"hallmark": "^5.0.1",
"nyc": "^17.1.0",
"simple-get": "^4.0.0",
"standard": "^16.0.4",
"tape": "^5.0.1",
"tempy": "^1.0.0"
},
"standard": {
"ignore": [
"client/**/*.js",
"test/integration/fixtures/**/*.js"
]
},
"repository": {
"type": "git",
"url": "git://github.com/airtap/airtap.git"
},
"keywords": [
"airtap",
"browser",
"saucelabs",
"tap",
"tape",
"testing"
],
"engines": {
"node": ">=20"
}
}