-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.03 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.03 KB
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
65
66
67
{
"name": "numfmt",
"description": "Full Excel style number formatting",
"author": "Borgar Þorsteinsson <borgar@borgar.net>",
"version": "3.2.6",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"build:all": "npm run build && npm run build:types && npm run build:docs",
"build:docs": "echo '# Numfmt API\n'>API.md; jsdoc -t node_modules/@borgar/jsdoc-tsmd -d console lib>>API.md",
"build:types": "jsdoc -c tsd.json lib>dist/numfmt.d.ts",
"check": "npm run test && npm run lint && npm run typecheck",
"lint": "eslint lib test",
"release": "git diff --exit-code && tsup && npm publish && V=$(jq -r .version package.json) && git tag -a $V -m $V && git push origin $V && gh release create $V --generate-notes",
"test": "SKIPTABLES=1 tape './{lib,test}/*{.spec,-test}.js'|tap-min",
"test-all": "tape test/*-test.js",
"typecheck": "tsc --noEmit"
},
"main": "dist/numfmt.js",
"types": "dist/numfmt.d.ts",
"module": "lib/index.js",
"exports": {
".": {
"require": "./dist/numfmt.js",
"types": "./dist/numfmt.d.ts",
"default": "./lib/index.js"
}
},
"preferGlobal": false,
"repository": {
"type": "git",
"url": "git://github.com/borgar/numfmt.git"
},
"homepage": "https://github.com/borgar/numfmt",
"bugs": {
"url": "http://github.com/borgar/numfmt/issues"
},
"keywords": [
"excel",
"spreadsheet",
"xls",
"xlsx",
"number",
"date",
"format",
"formatter"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "~7.29.0",
"@babel/preset-env": "~7.29.2",
"@borgar/eslint-config": "~4.1.0",
"@borgar/jsdoc-tsmd": "~0.2.2",
"@eslint/js": "~9.39.2",
"@rollup/plugin-babel": "~7.0.0",
"@rollup/plugin-terser": "~1.0.0",
"@types/node": "~25.5.0",
"eslint": "~9.39.2",
"globals": "~17.4.0",
"jsdoc": "~4.0.5",
"rollup": "~4.60.1",
"tap-min": "~3.0.0",
"tape": "~5.9.0",
"typedoc-plugin-markdown": "~4.10.0",
"typescript": "~5.9.3",
"typescript-eslint": "~8.56.1"
}
}