-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 1011 Bytes
/
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
{
"name": "ssfst",
"version": "2.0.0",
"description": "Subsequential Finite State Transducer. Given an input text, produces a new text by applying a fixed set of rewrite rules.",
"main": "index.js",
"engines": {
"node": ">=12.x"
},
"scripts": {
"test": "nyc jasmine",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deniskyashif/ssfst.git"
},
"keywords": [
"nlp",
"transducer",
"finite automata",
"pattern recognition",
"text rewriting"
],
"author": "Denis Kyashif <denis.kyashif@gmail.com> deniskyashif.github.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/deniskyashif/ssfst/issues"
},
"homepage": "https://github.com/deniskyashif/ssfst#readme",
"devDependencies": {
"coveralls": "^3.0.9",
"jasmine": "^2.99.0",
"nyc": "^15.0.0"
}
}