-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 3.17 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "sorted-btree",
"version": "2.1.2",
"description": "A sorted list of key-value pairs in a fast, typed in-memory B+ tree with a powerful API.",
"sideEffects": false,
"main": "b+tree.js",
"typings": "b+tree",
"scripts": {
"test": "tsc && echo //ts-jest-issue-657 >interfaces.js && jest",
"build": "tsc && npm run minify",
"minify": "node scripts/minify.js",
"sizes": "npm run build && node scripts/size-report.js",
"prepare": "npm run build",
"safePublish": "npm run build && testpack && npm publish",
"benchmark": "npm run build && node benchmarks.js"
},
"files": [
"b+tree.js",
"b+tree.d.ts",
"b+tree.min.js",
"extended/*.js",
"extended/*.d.ts",
"extended/*.min.js",
"sorted-array.js",
"sorted-array.d.ts",
"interfaces.d.ts",
"readme.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/qwertie/btree-typescript.git"
},
"keywords": [
"B+",
"tree",
"btree",
"sorted",
"set",
"map",
"list",
"collection",
"fast-cloning",
"copy-on-write",
"optimized"
],
"author": "David Piepgrass",
"license": "MIT",
"bugs": {
"url": "https://github.com/qwertie/btree-typescript/issues"
},
"homepage": "https://github.com/qwertie/btree-typescript#readme",
"devDependencies": {
"@types/bintrees": "^1.0.2",
"@types/collections": "^5.0.2",
"@types/mersenne-twister": "^1.1.2",
"@types/node": "^10.17.28",
"babel-core": "^6.26.3",
"bintrees": "^1.0.2",
"collections": "^5.1.13",
"functional-red-black-tree": "^1.0.1",
"jest": "^26.6.2",
"mersenne-twister": "^1.1.0",
"testpack-cli": "^1.1.4",
"ts-jest": "^26.4.3",
"ts-node": "^7.0.1",
"typescript": "^4.0.8",
"uglify-js": "^3.11.4"
},
"dependencies": {},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": {
"//": "There are errors accessing internal symbols during safePublish; treat them as warnings",
"warnOnly": true
}
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)test)\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"<rootDir>.*nontest.*",
"<rootDir>/.testpack"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"verbose": true,
"bail": false,
"testEnvironment": "node"
},
"testpack": {
"packagejson": {
"scripts": {
"test": "echo //for ts-jest bug #618 > workaround.ts && jest"
}
},
"install": [
"ts-jest@26.4.3",
"typescript@3.8.3"
],
"verbose": true,
"test-folder": ".testpack",
"rmdir": true,
"dirty": true,
"replace-import//": [
"The first argument ensures tests run against the minified version of the library.",
"The second and third patterns are similar to defaults in testpack, but only replace relative imports that navigate",
"outside the test directory. This is necessary because the test directory is not published with the package."
],
"replace-import": [
"|\\./b\\+tree|$P/b+tree|",
"|\\.\\.|$P|",
"|\\.\\.([/\\\\].*)|$P$1|"
]
}
}