-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 2.4 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
57
58
59
60
61
62
63
{
"author": "Danny Wahl <[email protected]>",
"name": "sentimony",
"description": "multi-lexicon sentiment & emotion analysis for Node.js",
"version": "0.0.1",
"license": "MIT",
"homepage": "https://github.com/thedannywahl/sentimony",
"repository": {
"type": "git",
"url": "https://github.com/thedannywahl/sentimony.git"
},
"keywords": [
"sentiment",
"nlp",
"sentiment analysis",
"natural language",
"emotion"
],
"main": "./lib/index.js",
"scripts": {
"build:lexicon": "node ./build/build.js",
"build:afinn": "node ./build/AFINN/build.js",
"build:afinn-e": "node ./build/AFINN-E/build.js",
"build:bingliu": "node ./build/BingLiu/build.js",
"build:esr": "node ./build/ESR/build.js",
"build:mpqa": "node ./build/MPQA/build.js",
"build:nrc-ail": "node ./build/NRC-AIL/build.js",
"build:nrc-e": "node ./build/NRC-E/build.js",
"build:nrc-vad": "node ./build/NRC-VAD/build.js",
"build:sentiwordnet": "node ./build/SentiWordNet/build.js",
"build:pattern": "node ./build/Pattern/build.js",
"build:vader": "node ./build/VADER/build.js",
"build": "npm run build:afinn && npm run build:afinn-e && npm run build:bingliu && npm run build:esr && npm run build:mpqa && npm run build:nrc-ail && npm run build:nrc-e && npm run build:nrc-vad && npm run build:pattern && npm run build:sentiwordnet && npm run build:vader && npm run build:lexicon",
"test:lint": "eslint build --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": {
"async": "^3.0.0",
"benchmark": "^2.1.4",
"csvtojson": "^2.0.8",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"fs": "0.0.2",
"mock-require": "^3.0.3",
"path": "^0.12.7",
"tap": "^14.1.2",
"xlsx-to-json": "^0.3.0"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.9.0"
},
"dependencies": {}
}