-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
105 lines (105 loc) · 2.51 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
97
98
99
100
101
102
103
104
105
{
"name": "sorted-btree",
"version": "1.8.0",
"description": "A sorted list of key-value pairs in a fast, typed in-memory B+ tree with a powerful API.",
"main": "b+tree.js",
"typings": "b+tree",
"scripts": {
"test": "tsc && echo //ts-jest-issue-657 >interfaces.js && jest",
"build": "tsc && npm run minify",
"minify": "uglifyjs -cm -o b+tree.min.js -- b+tree.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",
"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.11",
"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": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)test)\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"<rootDir>.*nontest.*",
"<rootDir>/.testpack"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"bail": true,
"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//": "// Use the minified version in .testpack",
"replace-import": [
"|./b\\+tree|$P/b+tree|",
"|..?|$P|",
"|..?([/\\\\].*)|$P$1|"
]
}
}