-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.64 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "whichx",
"version": "3.1.0-SNAPSHOT",
"description": "A text description classifier for classifying arbitrary strings into provided labels",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src/*.js && eslint test/*.js && echo 'Linting complete.'",
"test": "npm run lint && mocha test/ && echo 'Testing complete.'",
"typescript": "tsc && echo 'Type definitions built.'",
"minify": "uglifyjs src/index.js -o dist/index.js --source-map && echo 'Sources minified.'",
"build": "npm ci && npm test && npm run typescript && npm run minify && echo 'Build success.'",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rudikershaw/whichx.git"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"keywords": [
"naive",
"bayes",
"text",
"classifier",
"machine-learning",
"nlp",
"natural-language-processing",
"bayesian",
"text-classifier",
"bayes-classifier",
"naive-bayes-classification",
"natural-language"
],
"author": "Rudi Kershaw <alexander_kershaw@hotmail.co.uk> (http://www.rudikershaw.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rudikershaw/whichx/issues"
},
"homepage": "https://github.com/rudikershaw/whichx#readme",
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.0.0",
"typescript": "^4.6.4",
"uglify-js": "^3.15.4"
}
}