-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.43 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.43 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
{
"name": "bplustree-typescript",
"version": "0.0.1",
"description": "bplustree implementation in typescript",
"engines": {
"node": ">= 10.9.0",
"npm": ">= 6.2.0",
"yarn": ">=1.1.0"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"bdd": "yarn run jest --watch --onlyChanged",
"build": "yarn run tsc",
"ci:build-check": "yarn run build",
"ci:format": "yarn run format && yarn run diff-check",
"ci:lint": "yarn run tslint",
"ci:test": "yarn run jest --ci --silent --runInBand",
"coverage": "yarn run jest --collectCoverage",
"diff-check": "git diff --exit-code --name-only ./modules ./projects",
"format": "yarn run format:ts",
"format:ts": "yarn run format:ts:import && prettier --config .prettierrc --write '{modules,projects}/**/*.ts'",
"format:ts:import": "import-sort --write '{modules,projects}/**/*.ts'",
"jest": "jest -c jest.config.js",
"test": "yarn run jest",
"test:perf": "ts-node src/test-performance/b-plus-tree-performance.test.ts",
"tsc": "tsc -p tsconfig.json",
"tslint": "tslint -p tsconfig.json"
},
"dependencies": {
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/node": "^10.9.3",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"ts-jest": "^23.1.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.0.3",
"vrsource-tslint-rules": "^5.8.2"
}
}