-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "@ppjmpd/cyrilla",
"version": "0.2.8",
"description": "Transliteration from the Latin script to the Cyrillic script (сyrillization) and vice-versa (romanization)",
"main": "build/index.js",
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ppjmpd/cyrilla.git"
},
"keywords": [
"latin",
"cyrillic",
"transliteration",
"сyrillization",
"romanization"
],
"author": "Sergey N <[email protected]> (https://mrauhu.ru/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ppjmpd/cyrilla/issues"
},
"homepage": "https://github.com/ppjmpd/cyrilla#readme",
"engines": {
"node": ">= 14"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "~4.12.0",
"@typescript-eslint/parser": "~4.12.0",
"eslint": "~7.17.0",
"eslint-config-prettier": "~7.1.0",
"eslint-plugin-jest": "~24.1.3",
"jest": "~26.6.3",
"prettier": "~2.2.1",
"rimraf": "~3.0.2",
"ts-jest": "~26.4.4",
"tsutils": "~3.19.1",
"typescript": "~4.1.3"
},
"files": [
"build/**",
"LICENSE.txt",
"README.md"
]
}