-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.73 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": "@sumup-oss/intl",
"version": "3.0.1",
"description": "Format numbers, currency values, dates, and times for any locale with the ECMAScript Internationalization API",
"repository": "git@github.com:sumup-oss/intl-js.git",
"author": "Connor Bär <connor.baer@sumup.com>",
"license": "Apache-2.0",
"private": false,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "tsc --watch",
"dev": "npm run start",
"build": "tsc",
"docs": "typedoc",
"lint": "foundry run eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"test": "vitest",
"test:ci": "vitest run --coverage",
"check:security": "audit-ci --critical",
"check:licenses": "license-checker --production --summary --failOn=GPLv3",
"prerelease": "npm run build",
"release": "changeset publish"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@sumup-oss/foundry": "^8.0.0",
"@vitest/coverage-v8": "^2.0.5",
"audit-ci": "^7.0.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.1.3",
"jest-extended": "^4.0.2",
"license-checker": "^25.0.1",
"temporal-polyfill": "^0.2.5",
"typedoc": "^0.26.3",
"typedoc-github-wiki-theme": "^2.0.0",
"typedoc-plugin-markdown": "^4.0.3",
"typescript": "^5.4.5",
"vitest": "^2.0.5"
},
"peerDependencies": {
"temporal-polyfill": "0.2.x"
}
}