-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.18 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@acid-tango/lokalise-downloader",
"version": "0.2.1",
"description": "A simple npm package for downloading translations from Lokalise",
"main": "dist/fetcher.js",
"engines": {
"node": ">= 12.13.0"
},
"homepage": "https://github.com/acidtango/lokalise-downloader",
"repository": "https://github.com/acidtango/lokalise-downloader",
"author": "Acid Tango",
"contributors": [
"Daniel Ramos <[email protected]>"
],
"bin": {
"lokalise-downloader": "./dist/bin/lokalise-downloader.js"
},
"license": "MIT",
"scripts": {
"clean": "rimraf coverage build tmp dist",
"build": "tsc -p ./tsconfig.build.json",
"lint": "eslint --ext .ts ./src",
"lint:fix": "eslint --ext .ts --fix ./src",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/cli": "7.23.9",
"@babel/core": "7.23.9",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-transform-modules-commonjs": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@types/adm-zip": "0.5.5",
"@types/express": "4.17.21",
"@types/jest": "27.5.2",
"@types/node-fetch": "2.6.11",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-jest": "27.5.1",
"eslint": "8.56.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-standard": "5.0.0",
"express": "4.20.0",
"fetch-mock": "9.11.0",
"jest": "27.5.1",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"typescript": "4.8.4"
},
"jest": {
"testEnvironment": "node",
"moduleDirectories": [
"./node_modules",
"./src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
}
},
"dependencies": {
"adm-zip": "^0.5.9",
"change-case": "^4.1.2",
"commander": "^9.0.0",
"node-fetch": "^2.6.1"
}
}