-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "classr",
"version": "1.0.0",
"description": "Use microclassifiers in the cloud for spam detection, sentiment analysis and more.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --build",
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "webpack",
"docs": "typedoc src/index.ts --out docs/api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lammbdacasserole/classr-js.git"
},
"keywords": [
"javascript",
"typescript",
"machine-learning",
"classification",
"mlaas"
],
"author": "Saul Johnson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lambdacasserole/classr-js/issues"
},
"homepage": "https://github.com/lambdacasserole/classr-js#readme",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.9",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"ts-node": "^10.1.0",
"typedoc": "^0.21.5",
"typescript": "^4.3.5",
"webpack": "^5.47.1",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"axios": "^1.2.2"
}
}