-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.28 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@phensley/unit-converter",
"version": "1.9.2",
"description": "Conversions between CLDR units",
"main": "lib/index.js",
"module": "lib-es/index.js",
"types": "lib/index.d.ts",
"author": "Patrick Hensley <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/phensley/cldr-engine/",
"repository": {
"type": "git",
"url": "https://github.com/phensley/cldr-engine"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"api": "api-extractor run -c ./etc/api-extractor.json --verbose",
"api:local": "pnpm run api -l",
"bench:off": "ts-node __benchmarks__/",
"build": "pnpm run build:cj && pnpm run build:es",
"build:cj": "tsc -p ./tsconfig.json",
"build:es": "tsc -p ./tsconfig.json --module esnext --outDir lib-es",
"build:lint": "tsc -p ./tsconfig.lint.json",
"build:watch": "tsc -p ./tsconfig.json -w --preserveWatchOutput",
"clean": "rimraf ./lib ./lib-es ./.scratch",
"clean:full": "pnpm run clean && rimraf ./node_modules",
"coverage": "jest --coverage --runInBand --no-cache --coverageReporters=html",
"lint": "eslint -c .eslintrc.js --ext .ts src __tests__",
"prepublish": "pnpm run build",
"test:watch": "jest --watch --coverage --coverageReporters=html"
},
"files": [
"lib/",
"lib-es/"
],
"dependencies": {
"@phensley/cldr-types": "workspace:~1.9.2",
"@phensley/cldr-utils": "workspace:~1.9.2",
"@phensley/decimal": "workspace:~1.9.2",
"tslib": "^2.7.0"
},
"devDependencies": {
"@microsoft/api-extractor": "~7.47.7",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"add": "^2.0.6",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.4",
"chalk": "^4.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"pnpm": "^9.9.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "~5.5.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
}
}