-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "@gabrielrufino/cube",
"version": "2.0.2",
"description": "Data structures made in Typescript",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts",
"test": "jest",
"test:cov": "npm t -- --coverage",
"test:mutation": "npx stryker run",
"test:watch": "npm t -- --watch",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielrufino/cube.git"
},
"keywords": [
"Data",
"Structures"
],
"author": "Gabriel Rufino <contato@gabrielrufino.com>",
"funding": "https://github.com/sponsors/gabrielrufino",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/gabrielrufino/cube/issues"
},
"homepage": "https://github.com/gabrielrufino/cube#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@faker-js/faker": "^8.4.1",
"@stryker-mutator/core": "^8.6.0",
"@stryker-mutator/jest-runner": "^8.6.0",
"@stryker-mutator/typescript-checker": "^8.6.0",
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"eslint-config-xo": "^0.43.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}