forked from pioniredu/preslovljivac-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "@pionir/preslovljivac",
"version": "3.0.6",
"description": "A simple transliteration library for Serbian language, written in Javascript and using ES Modules. ",
"main": "main.js",
"type": "module",
"scripts": {
"test": "npx ava ./tests/test.js",
"postinstall": "opencollective-postinstall"
},
"collective": {
"url": "https://opencollective.com/pionir"
},
"devDependencies": {
"ava": "^2.4.0"
},
"author": "Vuk",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/pioniredu/preslovljivac-js.git"
},
"keywords": [
"preslovljivac",
"preslovljivac-js",
"cyrillic",
"latin"
],
"bugs": {
"url": "https://github.com/pioniredu/preslovljivac-js/issues"
},
"homepage": "https://github.com/pioniredu/preslovljivac-js#readme",
"dependencies": {
"@pionir/detektor-js": "^2.0.0",
"opencollective-postinstall": "^2.0.3"
},
"directories": {
"test": "tests"
},
"ava": {
"require": [
"esm"
]
}
}