forked from denull/Az.js
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.49 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.49 KB
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
{
"name": "az",
"version": "0.2.3",
"description": "A NLP library for Russian language",
"main": "dist/az.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deNULL/Az.js.git"
},
"keywords": [
"NLP",
"natural",
"language",
"processing",
"morphology",
"syntax",
"tokenization",
"words",
"names",
"parse",
"inflect",
"Russian"
],
"author": "Denis Olshin (me@denull.ru)",
"license": "MIT",
"bugs": {
"url": "https://github.com/deNULL/Az.js/issues"
},
"homepage": "https://github.com/deNULL/Az.js#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"babel-jest": "^29.3.1",
"blanket": "^1.2.3",
"chai": "^3.5.0",
"gulp": "^4.0.0",
"gulp-concat": "^2.6.0",
"gulp-filesize": "0.0.6",
"gulp-jsdoc-to-markdown": "^1.2.2",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-terser": "^2.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"jest": "^29.3.1",
"merge-stream": "^1.0.0",
"sinon": "^1.17.3",
"typescript": "^4.8.4"
},
"config": {
"blanket": {
"pattern": [
""
],
"data-cover-never": [
"node_modules",
"test"
]
}
},
"dependencies": {
"ts-node": "^10.9.1"
}
}