-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 1.84 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
{
"name": "numfmt",
"description": "Full Excel style number formatting",
"author": "Borgar Þorsteinsson <borgar@borgar.net>",
"version": "3.1.3",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"build:types": "jsdoc -c tsd.json lib>dist/numfmt.d.ts",
"build:docs": "echo '# Numfmt API\n'>API.md; jsdoc -t node_modules/@borgar/jsdoc-tsmd -d console lib>>API.md",
"build:all": "npm run build && npm run build:types && npm run build:docs",
"start": "nodemon -w test -w lib -x 'SKIPTABLES=1 tape 'test/*-test.js'|tap-min'",
"lint": "eslint lib test",
"test-all": "tape 'test/*-test.js'",
"test": "SKIPTABLES=1 tape './{lib,test}/*{.spec,-test}.js'|tap-min"
},
"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.24.5",
"@babel/plugin-proposal-class-properties": "~7.18.6",
"@babel/plugin-proposal-export-default-from": "~7.24.1",
"@babel/preset-env": "~7.24.5",
"@borgar/eslint-config": "~3.1.0",
"@borgar/jsdoc-tsmd": "~0.2.2",
"@rollup/plugin-babel": "~6.0.4",
"@rollup/plugin-terser": "~0.4.4",
"eslint": "~8.57.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-jsdoc": "~48.2.4",
"jsdoc": "~4.0.3",
"rollup": "~4.24.0",
"tap-min": "~3.0.0",
"tape": "~5.7.5"
}
}