-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 1.72 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
{
"name": "@socketsupply/tapzero",
"version": "0.8.0",
"description": "Smallest test library",
"main": "index.js",
"scripts": {
"tsc": "npr tsc -p jsconfig.json --maxNodeModuleJsDepth 0",
"lint": "npr tsdocstandard -v",
"test": "npm run tsc && npm run lint && node test/harness.js && node test/index.js && npr type-coverage",
"vendor": "cp node_modules/fast-deep-equal/index.js ./fast-deep-equal.js; sed -i '1s;^;// Copied from [email protected].\\n// @ts-nocheck\\n;' fast-deep-equal.js"
},
"typeCoverage": {
"atLeast": 98,
"project": "jsconfig.json",
"strict": true,
"detail": true,
"ignoreUnread": true,
"ignoreFiles": [
"fast-deep-equal.js",
"test/zora/fixtures/*.js"
]
},
"binDependencies": {
"tsdocstandard": "16.1.0",
"type-coverage": "2.14.2",
"typescript": "4.0.5"
},
"devDependencies": {
"@pre-bundled/tape": "4.11.0",
"@types/node": "13.7.4",
"diff": "4.0.2",
"fast-deep-equal": "3.1.1",
"npm-bin-deps": "1.10.1",
"request": "2.88.2",
"tiny-benchy": "1.0.1"
},
"tsdocstandard": {
"ignore": [
"fast-deep-equal.js",
"benchmarks_micro",
"test/zora/fixtures"
]
},
"files": [
"index.js",
"harness.js",
"fast-deep-equal.js"
],
"author": "Raynos <[email protected]>",
"repository": "git://github.com/socketsupply/tapzero.git",
"homepage": "https://github.com/socketsupply/tapzero",
"bugs": {
"url": "https://github.com/socketsupply//tapzero/issues",
"email": "[email protected]"
},
"contributors": [
{
"name": "Raynos"
}
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/socketsupply/tapzero/raw/master/LICENSE"
}
]
}