-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.63 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.63 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
68
{
"name": "intl-messageformat-tiny",
"version": "1.2.0",
"description": "tiny alternative to intl-messageformat",
"keywords": [
"i18n",
"intl",
"internationalization",
"localization",
"globalization",
"messageformat",
"parser",
"plural",
"icu"
],
"homepage": "https://github.com/spurreiter/intl-messageformat-tiny#readme",
"bugs": {
"url": "https://github.com/spurreiter/intl-messageformat-tiny/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spurreiter/intl-messageformat-tiny.git"
},
"license": "MIT",
"author": "spurreiter",
"type": "module",
"exports": {
".": {
"require": "./lib/format.cjs",
"types": "./types/index.d.ts",
"default": "./src/format.js"
},
"./package.json": "./package.json"
},
"main": "./src/format.js",
"types": "./types",
"files": [
"lib",
"src",
"types"
],
"scripts": {
"all": "npm-run-all lint build c8 types",
"build": "rollup -c",
"c8": "c8 -r text -r html -r lcov npm t",
"changelog": "conv-changelog",
"lint": "eslint --fix",
"test": "mocha",
"types": "rimraf types; tsc"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"c8": "^10.1.3",
"chai": "^6.2.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"intl-messageformat": "^11.1.2",
"mocha": "^11.7.5",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.2",
"rollup": "^4.57.1",
"typescript": "^5.9.3"
}
}