-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "vhs-tape",
"description": "A test harness for browser elements and components",
"version": "3.3.1",
"author": "Bret Comnes <[email protected]> (https://bret.io/)",
"bugs": {
"url": "https://github.com/hyperdivision/vhs-tape/issues"
},
"bin": "bin.js",
"dependencies": {
"browserify": "^16.5.0",
"events.once": "^2.0.2",
"fast-on-load": "^1.1.0",
"glob": "^7.1.4",
"pump": "^3.0.0",
"subarg": "^1.0.0",
"tape": "^4.6.2",
"tape-run": "^10.0.0"
},
"devDependencies": {
"budo": "^11.6.2",
"dependency-check": "^3.0.0",
"hui": "^1.2.5",
"npm-run-all": "^4.0.0",
"standard": "^12.0.1"
},
"homepage": "https://github.com/hyperdivision/vhs-tape#readme",
"keywords": [
"browser testing",
"frontend",
"hui",
"tape",
"test"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hyperdivision/vhs-tape.git"
},
"scripts": {
"test": "run-s test:*",
"test:deps": "dependency-check package.json --missing --unused --no-dev -i tape-run",
"test:example": "./bin.js example.js",
"test:lint": "standard",
"start": "budo --live --open example.js"
}
}