-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 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": "@lokalise/node-api",
"version": "12.4.1",
"description": "Official Lokalise API 2.0 Node.js client",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/lokalise/node-lokalise-api.git"
},
"keywords": [
"api",
"node",
"typescript",
"lokalise",
"client",
"client library"
],
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest run --coverage",
"test:watch": "vitest watch",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^20.1.2",
"@types/sinon": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-istanbul": "^1.0.1",
"dotenv": "^16.0.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"sinon": "^17.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
"undici": "^6.0.0",
"vitest": "^1.0.0"
},
"bugs": {
"url": "https://github.com/lokalise/node-lokalise-api/issues"
},
"homepage": "https://lokalise.github.io/node-lokalise-api",
"exports": "./dist/main.js",
"types": "./dist/main.d.ts",
"directories": {
"lib": "./src",
"test": "./test"
},
"author": "Lokalise group, Ilya Krukowski",
"engines": {
"node": ">=18"
}
}