-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1006 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1006 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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@profullstack/text-type-detection",
"version": "1.0.0",
"description": "Detect text format types (plain, markdown, ascii art, code, html, json, xml) from strings",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"scripts": {
"test": "mocha test/**/*.test.js",
"test:watch": "mocha test/**/*.test.js --watch",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\""
},
"keywords": [
"text-detection",
"format-detection",
"markdown",
"ascii-art",
"text-analysis",
"content-type"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"chai": "^5.1.2",
"eslint": "^9.17.0",
"mocha": "^11.0.1",
"prettier": "^3.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/profullstack/text-type-detection.git"
}
}