-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "@hastom/fixed-point",
"version": "2.0.0",
"description": "Light lib for fixed point math made around native bigint",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run lint && npm run build && npm run test",
"lint": "eslint . --ext .ts,.tsx --fix",
"prebuild": "rimraf dist",
"build": "tsc",
"test": "jest",
"dev": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git@github.com:hastom/fixed-point.git"
},
"keywords": [
"fixed-point",
"math",
"bigint",
"bigdecimal"
],
"author": "Aleksandr Klyavlin",
"license": "MIT",
"devDependencies": {
"@hastom/eslint-config": "^1.0.2",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}