-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "lotin-kirill",
"version": "0.1.3",
"description": "Transform Uzbek latin characters into Uzbek-cyrillic characters or vice versa. O'zbekcha so'zlarni lotin alifbosidan kirill alifbosiga (yoki aksincha) o'girish.",
"author": "Diyorbek Sadullaev <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/diyorbek/lotin-kirill",
"repository": {
"type": "git",
"url": "https://github.com/diyorbek/lotin-kirill.git"
},
"keywords": [
"lotin",
"kirill",
"lotin-kirill",
"alifbo",
"transliteratsiya",
"o'zbekcha"
],
"files": [
"./pkg"
],
"scripts": {
"build": "pika build",
"typecheck": "tsc --noEmit --skipLibCheck",
"format": "prettier --write .",
"lint": "eslint . --ext .ts",
"test": "jest --coverage",
"preversion": "yarn typecheck && yarn lint",
"version": "yarn build",
"postversion": "git push && git push --tags",
"prepublishOnly": "yarn typecheck && yarn lint && yarn build"
},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^6.0.0",
"jest": "^26.6.3",
"np": "^7.5.0",
"pika-plugin-build-legacy-browser": "^0.0.3",
"prettier": "^2.2.1",
"prettier-plugin-organize-imports": "^2.1.0",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"dependencies": {
"anchorme": "^2.1.2"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-types"
],
[
"pika-plugin-build-legacy-browser",
{
"name": "lotinKirill",
"sourcemap": false,
"entrypoint": [
"unpkg",
"jsdelivr"
]
}
]
]
}
}