-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.76 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
91
92
93
94
95
96
{
"name": "fresh-tape",
"version": "5.0.1",
"description": "fresh tap-producing test harness for node and browsers (with dependencies updated beyond node 4)",
"main": "index.js",
"exports": {
".": [
{
"default": "./index.js"
},
"./index.js"
],
"./lib/default_stream": "./lib/default_stream.js",
"./lib/results": "./lib/results.js",
"./lib/test": "./lib/test.js",
"./package": "./package.json",
"./package.json": "./package.json"
},
"bin": "./bin/fresh-tape",
"directories": {
"example": "example",
"test": "test"
},
"dependencies": {
"deep-equal": "^2.0.3",
"defined": "^1.0.0",
"dotignore": "^0.1.2",
"for-each": "^0.3.3",
"function-bind": "^1.1.1",
"glob": "^7.1.6",
"has": "^1.0.3",
"inherits": "^2.0.4",
"is-regex": "^1.0.5",
"minimist": "^1.2.5",
"object-inspect": "^1.7.0",
"object-is": "^1.1.2",
"object.assign": "^4.1.0",
"path-pony": "^1.0.0",
"readable-stream": "github:hugomrdias/readable-stream#fix/remove-node-globals",
"resolve": "^1.17.0",
"resumer-through2": "^1.0.0",
"string.prototype.trim": "^1.2.1",
"through2": "github:martinheidegger/through2"
},
"devDependencies": {
"@types/node": "^14.0.13",
"concat-stream": "^2.0.0",
"eclint": "^2.8.1",
"ecstatic": "^4.1.4",
"eslint": "^7.0.0",
"falafel": "^2.2.4",
"js-yaml": "^3.13.1",
"tap": "^14.10.7",
"tap-parser": "^10.0.1",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"prelint": "eclint check",
"lint": "eslint . bin/* && tsc --noEmit test/typings.ts && webpack --bail index.js",
"pretest": "npm run lint",
"test": "npm run tests-only",
"tests-only": "tap --no-esm -Rtap --no-cov test/*.js"
},
"testling": {
"files": "test/browser/*.js",
"browsers": [
"ie/6..latest",
"chrome/20..latest",
"firefox/10..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6"
]
},
"repository": {
"type": "git",
"url": "git://github.com/martinheidegger/fresh-tape.git"
},
"homepage": "https://github.com/martinheidegger/fresh-tape",
"keywords": [
"tap",
"test",
"harness",
"assert",
"browser"
],
"author": {
"name": "James Halliday",
"email": "[email protected]",
"url": "http://substack.net"
},
"license": "MIT"
}