-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
54 lines (54 loc) · 1.47 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": "cyrillic-to-translit-js",
"version": "3.2.1",
"description": "Simple javascript function for converting Cyrillic symbols to Translit",
"main": "CyrillicToTranslit",
"typings": "CyrillicToTranslit",
"scripts": {
"coverage": "istanbul cover _mocha",
"precoveralls": "npm run coverage",
"coveralls": "coveralls < coverage/lcov.info",
"size": "size-limit",
"test": "tsc && tslint *.ts && mocha && npm run size",
"tdd": "npm test -- --watch",
"browser": "browserify CyrillicToTranslit.js --standalone cyrillicToTranslit -o dist/bundle.js"
},
"devDependencies": {
"@size-limit/preset-small-lib": "8.1.0",
"browserify": "16.5.2",
"coveralls": "3.1.0",
"istanbul": "0.4.5",
"mocha": "10.1.0",
"mocha-lcov-reporter": "1.3.0",
"should": "13.2.3",
"tslint": "6.1.2",
"typescript": "4.1.3"
},
"size-limit": [
{
"path": "CyrillicToTranslit.js",
"limit": "1.5 KB"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/greybax/CyrillicToTranslitJS.git"
},
"keywords": [
"cyrillic",
"translit",
"transformation"
],
"author": "Aleksandr Filatov <[email protected]>",
"contributors": [
"makepost <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/greybax/CyrillicToTranslitJS/issues"
},
"homepage": "https://github.com/greybax/CyrillicToTranslitJS#readme",
"dependencies": {
"lodash.invert": "^4.3.0"
}
}