-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.81 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@float-toolkit/core",
"version": "2.1.0",
"description": "Float Toolkit is an NPM package for working with floating-point numbers.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./typings/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./typings/index.d.ts"
}
},
"scripts": {
"build": "rm -rf docs && npm run build:package && typedoc",
"build:package": "rm -rf dist typings && npm test && node scripts/esbuild.mjs",
"build:docs": "rm -rf docs && npm test && typedoc",
"test": "jest",
"test:watch": "npm run pretest && jest --watch",
"pretest": "rm -rf coverage && npm run format",
"format": "prettier --write . && eslint --ext .js,.mjs,.ts --fix ."
},
"repository": {
"type": "git",
"url": "git://github.com/float-toolkit/core.git"
},
"keywords": [
"float",
"floating-point",
"number",
"round",
"math",
"no-dependencies",
"dependency-less"
],
"author": "LuisFerLCC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/float-toolkit/core/issues"
},
"homepage": "https://float-toolkit.web.app/",
"devDependencies": {
"@types/eslint": "^8.4.10",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"esbuild": "^0.14.54",
"esbuild-plugin-d-ts-path-alias": "^2.0.0",
"eslint": "^8.31.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typedoc": "^0.23.23",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": "<4.8"
}
}