forked from winkjs/wink-sentiment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.49 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
{
"name": "wink-sentiment",
"version": "1.0.0",
"description": "Accurate and fast sentiment scoring of phrases with emoticons :) & emojis 🎉",
"keywords": [
"AFINN",
"Emojis",
"Emoticons",
"Natural Language Processing",
"NLP",
"Sentiment",
"Sentiment Analysis",
"Sentiment Classification",
"wink"
],
"main": "src/wink-sentiment.js",
"scripts": {
"pretest": "npm run lint && npm run hint && npm run docs",
"test": "istanbul cover _mocha ./test/",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"sourcedocs": "docker -i src -o ./sourcedocs --sidebar no",
"docs": "documentation build src/** -f html -o docs -c docs-toc.yml",
"hint": "jshint ./src/*.js ./test/*.js ./runkit/*.js",
"lint": "eslint ./src/*.js ./test/*.js ./runkit/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winkjs/wink-sentiment.git"
},
"author": "Sanjaya Kumar Saxena",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/winkjs/wink-sentiment/issues"
},
"homepage": "https://github.com/winkjs/wink-sentiment#readme",
"devDependencies": {
"chai": "^4.1.0",
"coveralls": "^3.0.0",
"docker": "^1.0.0",
"documentation": "^5.3.1",
"eslint": "^4.8.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.2.0"
},
"runkitExampleFilename": "./runkit/example.js"
}