-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "exact-round",
"version": "0.1.1",
"description": "Exact number round function for JavaScript/TypeScript",
"main": "./lib/cjs/index.js",
"types": "./lib/cjs/index.d.ts",
"module": "./lib/esm/index.js",
"files": [
"lib/",
"src/"
],
"exports": {
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.js"
}
},
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json && node ./postcompile.js",
"start": "tsc -w",
"test": "tsc && node ./lib/cjs/index.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shixiongfei/exact-round.git"
},
"keywords": [
"math",
"round",
"round up",
"round down"
],
"author": "shixiongfei",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/shixiongfei/exact-round/issues"
},
"homepage": "https://github.com/shixiongfei/exact-round#readme",
"devDependencies": {
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.4.3"
}
}