-
Notifications
You must be signed in to change notification settings - Fork 311
/
package.json
41 lines (41 loc) · 1.22 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
{
"author": "Andrew Sliwinski <andrewsliwinski@acm.org>",
"name": "sentiment",
"description": "AFINN-based sentiment analysis for Node.js",
"version": "5.0.3",
"license": "MIT",
"homepage": "https://github.com/thisandagain/sentiment",
"repository": {
"type": "git",
"url": "https://github.com/thisandagain/sentiment.git"
},
"keywords": [
"sentiment",
"analysis",
"nlp",
"sentiment analysis"
],
"main": "./lib/index.js",
"scripts": {
"build": "node ./build/build.js",
"test:lint": "eslint . --ext=js",
"test:unit": "tap test/unit/*.js",
"test:integration": "tap test/integration/*.js",
"test:benchmark": "node ./test/benchmark/performance.js",
"test:validate": "node ./test/benchmark/validate.js",
"test:coverage": "tap './test/{integration,unit}/*.js' --coverage --coverage-report=lcov",
"test": "npm run test:lint && npm run test:unit && npm run test:integration && npm run test:benchmark && npm run test:validate"
},
"devDependencies": {
"Sentimental": "1.0.1",
"async": "^3.1.0",
"benchmark": "^2.1.0",
"codecov": "^3.6.1",
"eslint": "^6.8.0",
"mock-require": "^3.0.3",
"tap": "^14.10.5"
},
"engines": {
"node": ">=8.0"
}
}