-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.24 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
{
"name": "@paakways/ghananlp-node",
"version": "0.0.4",
"description": "A simple GhanaNLP API wrapper written in Typescript",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paakways/ghananlp-node.git"
},
"keywords": [
"GhanaNLP",
"NLP",
"Translate",
"Typescript",
"NodeJS"
],
"author": "Samuel K. Boateng",
"license": "MIT",
"bugs": {
"url": "https://github.com/paakways/ghananlp-node/issues"
},
"homepage": "https://github.com/paakways/ghananlp-node#readme",
"dependencies": {
"axios": "^1.7.7"
},
"devDependencies": {
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^9.11.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
}
}