-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
83 lines (83 loc) · 2.38 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
{
"name": "shevchenko",
"version": "3.1.0",
"description": "JavaScript library for declension of Ukrainian anthroponyms",
"browser": "./dist/umd/shevchenko.min.js",
"main": "./dist/cjs/shevchenko.js",
"module": "./dist/es/shevchenko.js",
"types": "./dist/es/shevchenko.d.ts",
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "rollup -c --bundleConfigAsCjs",
"lint": "eslint --fix ./src",
"test": "jest",
"predocs": "rm -rf ./docs",
"docs": "typedoc && cp -a ./site/.output/public/. ./docs",
"preversion": "npm run lint && npm run test",
"prepublishOnly": "npm run build"
},
"keywords": [
"ukrainian-language",
"ukrainian",
"anthroponym-declension",
"personal-name-declension",
"given-name-declension",
"first-name-declension",
"patronymic-name-declension",
"patronymic-declension",
"family-name-declension",
"surname-declension",
"word-declension",
"declension",
"word-inflection",
"linguistics",
"natural-language-processing",
"nlp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tooleks/shevchenko-js.git"
},
"author": "Oleksandr Tolochko <shevchenko-js@tooleks.com>",
"contributors": [
"Anna Tolochko",
"Tetyana Tolochko"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tooleks/shevchenko-js/issues"
},
"homepage": "https://tooleks.github.io/shevchenko-js",
"dependencies": {
"@tensorflow/tfjs": "^4.1.0"
},
"devDependencies": {
"@janniks/typedoc-theme-stacks": "^1.2.3",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@tensorflow/tfjs-node": "^4.2.0",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"axios": "^1.6.0",
"csv": "^6.2.7",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"lodash": "^4.17.21",
"prettier": "2.8.3",
"rimraf": "^3.0.2",
"rollup": "^4.24.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.23.26",
"typescript": "^4.1.2"
}
}