-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 868 Bytes
/
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
{
"name": "nn-sentiment",
"version": "1.0.0",
"description": "Predicts sentiment for English text using a pre-trained neural network.",
"main": "src/index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soaxelbrooke/nn-sentiment.git"
},
"keywords": [
"sentiment-analysis",
"sentiment",
"sentiment-classification",
"javascript",
"browser"
],
"author": "Stuart Axelbrooke <[email protected]> (https://stuart.axelbrooke.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/soaxelbrooke/nn-sentiment/issues"
},
"homepage": "https://github.com/soaxelbrooke/nn-sentiment#readme",
"devDependencies": {
"jest": "^23.6.0",
"node-fetch": "^2.2.0",
"prettier": "^1.14.2"
},
"dependencies": {
"@tensorflow/tfjs": "^0.13.0"
}
}