-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "@u-wave/translate",
"description": "Small JS translations with proper pluralization",
"version": "1.1.1",
"author": "Renée Kooi <[email protected]>",
"bugs": "https://github.com/u-wave/translate/issues",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.0",
"@vitest/coverage-v8": "^2.0.1",
"cldr-core": "^45.0.0",
"dlv": "^1.1.3",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.0",
"make-plural-compiler": "^6.0.0",
"rollup": "^4.9.1",
"tsd": "^0.31.0",
"typescript": "^5.0.2",
"vitest": "^2.0.1"
},
"homepage": "https://github.com/u-wave/translate#readme",
"jsnext:main": "src/index.js",
"keywords": [
"u-wave"
],
"license": "MIT",
"main": "./dist/translate.js",
"module": "./dist/translate.mjs",
"exports": {
".": {
"require": "./dist/translate.js",
"default": "./dist/translate.mjs"
},
"./plurals/*": {
"require": "./plurals/*.js",
"default": "./plurals/*.mjs"
}
},
"repository": "u-wave/translate",
"scripts": {
"prepare": "rollup -c",
"lint": "eslint --ext mjs .",
"test": "npm run tests-only && npm run lint",
"tests-only": "vitest run --coverage.enabled --coverage.reporter=lcov --coverage.reporter=text --coverage.include='src/**'",
"types": "tsd"
},
"types": "index.d.ts",
"sideEffects": false
}