-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 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
{
"name": "@sixfold/fast-postgres-date-parser",
"version": "0.0.6",
"description": "faster implementation of postgres date parser",
"main": "dist/cjs/index.js",
"types": "dist/types/index.d.ts",
"repository": "git@github.com:6fold/fast-postgres-date-parser.git",
"author": "Jaan Oras <jaan.oras@gmail.com>",
"license": "MIT",
"files": [
"dist",
"!dist/**/__tests__"
],
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"release": "rimraf dist && yarn build && yarn test && standard-version",
"publish-release": "git push --follow-tags origin master && yarn authenticate && npm publish",
"authenticate": "npx google-artifactregistry-auth",
"fix": "yarn lint:fix",
"test": "yarn lint && yarn jest",
"benchmark": "ts-node src/benchmark/benchmark.ts"
},
"devDependencies": {
"@sixfold/editor-config": "^4.1.0",
"@sixfold/eslint-plugin": "^2.7.0",
"@sixfold/ts-config": "^5.1.2",
"@types/jest": "^29.2.1",
"@types/node": "^22",
"benny": "^3.7.1",
"eslint": "^8.57.1",
"jest": "^29.2.2",
"postgres-date": "^2.0.0",
"prettier": "^3",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.5.4"
},
"prettier": "@sixfold/editor-config/prettier",
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"rootDir": "./src/",
"testRegex": "\\.test\\.[jt]s$",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"node_modules"
]
}
}