-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "saferound",
"version": "1.2.0",
"description": "sum-safe rounding of number-arrays",
"repository": "https://github.com/boredland/saferound",
"author": "Jonas Strassel <[email protected]>",
"license": "MIT",
"private": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@release-it/conventional-changelog": "5.1.1",
"@types/jest": "29.5.14",
"commitlint": "17.8.1",
"husky": "8.0.3",
"jest": "29.7.0",
"release-it": "15.11.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsup": "6.7.0",
"typescript": "4.9.5"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --minify",
"prerelease": "yarn test && yarn build",
"release": "release-it",
"test": "jest",
"prepare": "husky install"
}
}