-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "lokalise-client",
"version": "1.1.9",
"description": "Client for lokalise.co",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc --declaration",
"lint": "node_modules/tslint/bin/tslint \"src/**/*.ts\" \"src/**/*.tsx\" --project ./tsconfig.json",
"preversion": "npm run lint && npm run build",
"translations": "node bin/index.js fetch"
},
"engines": {
"node": ">=10"
},
"bin": {
"translations": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibitcy/lokalise-client.git"
},
"keywords": [
"lokalise",
"lokalise.co"
],
"author": {
"name": "Maksim Sharipov",
"url": "https://github.com/pret-a-porter"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/ibitcy/lokalise-client/issues"
},
"homepage": "https://github.com/ibitcy/lokalise-client#readme",
"devDependencies": {
"@types/decompress": "^4.2.3",
"@types/flat": "^5.0.1",
"husky": "^4.2.1",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.12.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@lokalise/node-api": "^5.0.0",
"commander": "^6.1.0",
"config": "^3.3.1",
"decompress": "^4.2.1",
"deepmerge": "^4.2.2",
"flat": "^5.0.0",
"tslib": "^2.0.0"
}
}