-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.21 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
{
"name": "transifex-loader",
"version": "6.0.0",
"description": "Webpack loader to fetch imported translation files from transifex.",
"exports": {
"import": "./src/index.mjs"
},
"type": "module",
"scripts": {
"test": "npm run lint && c8 ava",
"coverage": "c8 report -r lcov",
"lint": "eslint src/ test/"
},
"keywords": [
"transifex",
"webpack",
"loader"
],
"author": "Martin Giger (https://humanoids.be)",
"license": "MIT",
"dependencies": {
"@freaktechnik/eslint-config-base": "^10.1.4",
"node-fetch": "^3.3.2",
"transifex-config": "^5.0.0"
},
"devDependencies": {
"@freaktechnik/eslint-config-node": "^10.1.4",
"@freaktechnik/eslint-config-test": "^10.1.4",
"ava": "^6.2.0",
"c8": "^10.1.2",
"eslint": "^9.14.0",
"random-string": "^0.2.0",
"sinon": "^19.0.2"
},
"bugs": {
"url": "https://github.com/freaktechnik/transifex-loader/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/freaktechnik/transifex-loader.git"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"engines": {
"node": ">= 16.0.0"
},
"sideEffects": false,
"publishConfig": {
"provenance": true
}
}