forked from hyperdivision/vhs-tape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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": "vhs-tape",
"description": "A test harness for browser elements and components",
"version": "1.6.1",
"author": "Bret Comnes <[email protected]> (https://bret.io/)",
"bugs": {
"url": "https://github.com/hyperdivision/vhs-tape/issues"
},
"dependencies": {
"fast-on-load": "^1.1.0",
"tape": "^4.6.2"
},
"devDependencies": {
"browserify": "^16.0.0",
"budo": "^11.6.2",
"dependency-check": "^3.0.0",
"hui": "^1.2.5",
"npm-run-all": "^4.0.0",
"standard": "^12.0.1",
"tape-run": "^6.0.0"
},
"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": "browserify example.js --debug | tape-run",
"test:lint": "standard",
"start": "budo --live --open example.js"
}
}