-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "vader-sentiment",
"version": "1.1.3",
"description": "javascript port of vader sentiment tool",
"main": "build/vaderSentiment.bundle.js",
"scripts": {
"tests": "babel-tape-runner tests/**/*.js | faucet",
"prettier": "prettier --print-width 100 --no-bracket-spacing --tab-width 2 --single-quote --write 'src/**/*.js' 'tests/**/*.js'",
"webpack": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaderSentiment/vaderSentiment-js.git"
},
"keywords": [
"vaderSentiment",
"vader",
"sentiment",
"polarity"
],
"contributors": [
"Nima Eskandary <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vaderSentiment/vaderSentiment-js/issues"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-tape-runner": "^2.0.1",
"faucet": "^0.0.1",
"prettier": "^1.9.2",
"tape": "^4.8.0",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
}
}