-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "agrona",
"version": "0.1.4",
"description": "TypeScript version of agrona DirectBuffer to use with Simple Binary Encoding",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dist": "rm -rf ./dist && tsc",
"lint": "eslint --ext .js,.ts --fix .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"test": "jest --passWithNoTests"
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rafalpiotrowski/agrona-ts.git"
},
"keywords": [
"SBE",
"Simple-Binary-Encoding",
"Aeron",
"Agrona",
"Encoding"
],
"author": "Rafał Piotrowski",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rafalpiotrowski/agrona-ts/issues"
},
"homepage": "https://github.com/rafalpiotrowski/agrona-ts#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.2"
}
}