-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (53 loc) · 1.39 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": "translit-rue",
"version": "3.0.0",
"description": "Translit is a JavaScript library that transliterates the Rusyn language between the Latin alphabet and the Cyrillic script.",
"license": "MIT",
"author": {
"name": "Braňo Šandala",
"email": "hi@brano.me"
},
"scripts": {
"build": "gulp build",
"test": "mocha --require @babel/register ./tests/**/*.test.js -R min --no-colors",
"test:dev": "mocha --require @babel/register ./tests/**/*.test.js -R min -w",
"lint": "eslint src/ tests/ gulpfile.js",
"prepare": "husky"
},
"main": "dist/translit_dist.min.js",
"files": [
"dist/translit_dist.min.js"
],
"repository": {
"type": "git",
"url": "https://github.com/surfinzap/translit-rue"
},
"bugs": {
"url": "https://github.com/surfinzap/translit-rue/issues"
},
"keywords": [
"transliteration",
"Rusyn"
],
"engines": {
"node": ">=6.9.4"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"babelify": "^10.0.0",
"browserify": "^17.0.1",
"eslint": "^9.17.0",
"gulp": "^5.0.0",
"gulp-cli": "^3.0.0",
"gulp-header": "^2.0.9",
"gulp-replace": "^1.1.4",
"gulp-uglify": "^3.0.2",
"husky": "^9.1.7",
"mocha": "^11.0.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}