-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 944 Bytes
/
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
{
"name": "trifid-plugin-i18n",
"version": "3.0.3",
"description": "Trifid plugin for i18n support",
"type": "module",
"main": "index.js",
"scripts": {
"test": "c8 --all --reporter=lcovonly --reporter=text node --test **/*.test.js"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/zazuko/trifid.git",
"directory": "packages/i18n"
},
"bugs": {
"url": "https://github.com/zazuko/trifid/issues"
},
"homepage": "https://github.com/zazuko/trifid",
"author": {
"name": "Zazuko GmbH",
"url": "https://zazuko.com/"
},
"keywords": [
"trifid",
"trifid-plugin",
"i18n"
],
"dependencies": {
"i18n": "^0.15.1"
},
"files": [
"index.js",
"test"
],
"devDependencies": {
"@types/i18n": "^0.13.12",
"c8": "^10.1.3",
"trifid-core": "^5.1.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}