-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "pos2tracery",
"version": "1.3.0",
"description": "a POS-tagger to generate Tracery grammars, and a tool to merge grammars",
"homepage": "https://jkirchartz.com/pos2tracery",
"bugs": {
"url": "https://github.com/jkirchartz/pos2tracery/issues",
"email": "me@jkirchartz.com"
},
"engines": {
"node": ">=12"
},
"main": "index.js",
"scripts": {
"test": "jest --silent",
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
"man": "marked-man --version 'v1.0.0' --manual 'POS 2 Tracery Help' --section 1 README.md > man/pos2tracery.1"
},
"pre-commit": [
"test",
"lint"
],
"man": "man/pos2tracery.1",
"repository": {
"type": "git",
"url": "https://github.com/jkirchartz/pos2tracery.git"
},
"bin": {
"pos2tracery": "bin/pos2tracery.js"
},
"keywords": [
"tracery",
"pos-tagger",
"generator",
"grammars",
"nlp",
"merge"
],
"author": "JKirchartz",
"license": "GPL-3.0",
"dependencies": {
"expand-contractions": "^1.0.1",
"tracery-grammar": "^2.7.4",
"wink-nlp-utils": "^2.0.6",
"wink-pos-tagger": "^2.2.2",
"yargs": "^14.2.3"
},
"devDependencies": {
"eslint": "^7.13.0",
"jest": "^26.6.0",
"marked": "^0.7.0",
"marked-man": "^0.7.0",
"pre-commit": "^1.2.2"
}
}