-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 882 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
36
37
{
"name": "taipa",
"version": "0.11.0",
"description": "Taiwanese parsing library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": "bin/app.js",
"scripts": {
"build": "tsc --outDir lib",
"test": "jest --env=node --colors --coverage test",
"clean": "git clean -fXd -e \\!node_modules -e \\!node_modules/**/* -e !.vscode"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taipalogy/taipa.git"
},
"keywords": [
"parsing",
"natural language processing",
"nlp",
"taiwanese"
],
"author": "taipalogy",
"license": "MIT",
"homepage": "https://taipalogy.github.io/susiahethong",
"devDependencies": {
"@types/jest": "29.2.6",
"@types/node": "18.11.18",
"jest": "29.3.1",
"ts-jest": "29.0.5",
"typescript": "4.9.4"
},
"files": [
"/lib/**/*.js",
"/lib/**/*.d.ts"
]
}