-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 969 Bytes
/
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
{
"name": "piece-table",
"version": "1.0.0",
"description": "A TypeScript implementation of the piece table data structure with red-black tree, multiple buffered and optimized by for line model, inspired by VSCode.",
"scripts": {
"test": "mocha --ui tdd -r jsdom-global/register --config 'test/.mocharc.jsonc' --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bistard/piece-table.git"
},
"keywords": [
"piece-table",
"javascript",
"typescript",
"vscode",
"data-structure"
],
"author": "Chris Li",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bistard/piece-table/issues"
},
"homepage": "https://github.com/Bistard/piece-table#readme",
"devDependencies": {
"@types/node": "^16.11.56",
"@types/mocha": "^9.0.0",
"mocha": "^9.1.3",
"jsdom-global": "3.0.2",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.4.4"
}
}