-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 805 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 805 Bytes
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
{
"name": "texthumanize",
"version": "0.28.2",
"private": true,
"description": "Text style normalization & readability engine — Python, TypeScript, PHP",
"repository": {
"type": "git",
"url": "https://github.com/ksanyok/TextHumanize"
},
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"test:js": "cd js && npm test",
"build:js": "cd js && npm run build",
"test:py": "python -m pytest tests/ -q",
"test:php": "cd php && vendor/bin/phpunit",
"test": "npm run test:py && npm run test:js && npm run test:php"
},
"workspaces": [
"js"
],
"engines": {
"node": ">=18"
},
"funding": {
"type": "paypal",
"url": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=ksanyok%40me.com&item_name=TextHumanize¤cy_code=USD"
}
}