-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 999 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
35
36
37
{
"name": "typed-buffer-struct",
"version": "0.1.2",
"description": "This is a package which helps the user to create a Struct with automatic Buffer creation.",
"author": {
"name": "Nelson Faiçal Rechdan",
"url": "https://github.com/Rechdan"
},
"repository": {
"type": "git",
"url": "https://github.com/Rechdan/typed-buffer-struct"
},
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"upgrade": "ncu -u && yarn --check-files",
"test": "jest",
"test:watch": "jest --watch",
"build": "ttsc && rm -rf \"./dist\" && mv \"./temp\" \"./dist\""
},
"devDependencies": {
"@types/jest": "29.5.3",
"@types/node": "20.4.2",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"eslint": "8.45.0",
"jest": "29.6.1",
"ts-jest": "29.1.1",
"ttypescript": "1.5.15",
"typescript": "4.9.5",
"typescript-transform-paths": "3.4.6"
},
"files": [
"package.json",
"dist"
]
}