-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.75 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
{
"name": "@localazy/languages",
"version": "1.0.0",
"description": "Available Localazy Languages",
"main": "lib/main/index.js",
"typings": "lib/main/index.d.ts",
"module": "lib/module/index.js",
"scripts": {
"build": "rimraf lib/* && npm run build-scripts && npm run build:main && npm run build:module",
"build:main": "tsc -p tsconfig.build.json",
"build:module": "tsc -p tsconfig.module.json",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"patch": "standard-version",
"minor": "standard-version --release-as minor",
"major": "standard-version --release-as major",
"release": "git push && git push --tags",
"build-scripts": "npx ts-node --esm ./scripts/build/index.ts",
"upload-translations": "npx ts-node --esm ./scripts/localazy.ts -- --upload",
"download-translations": "npx ts-node --esm ./scripts/localazy.ts -- --download"
},
"repository": {
"type": "git",
"url": "git+https://github.com/localazy/languages.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"typescript",
"localazy",
"languages"
],
"author": "Localazy",
"homepage": "https://github.com/localazy/languages.git",
"devDependencies": {
"@localazy/cli": "^1.7.3",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"dotenv": "^16.3.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"fs-extra": "^11.1.1",
"standard-version": "^9.5.0",
"typescript": "^4.9.5"
}
}