-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "@isabelle-ai/js-client",
"version": "1.0.4",
"description": "Lightweight Sentiment Analysis Client.",
"main": "./dist/index.js",
"homepage": "https://github.com/nparsons08/isabelle-js-client#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/isabelle-ai/js-client.git"
},
"author": "Nick Parsons <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"sentiment",
"sentiment analysis",
"text",
"text analysis"
],
"scripts": {
"build": "yarn lint && babel src --out-dir dist",
"start": "node dist/index.js",
"dev": "npx babel-node src/index.js",
"lint": "yarn prettier --write --check --config ./.prettierrc \"**/*.js\" && eslint --fix ./src",
"test:positive": "npx babel-node examples/positive.js",
"test:neutral": "npx babel-node examples/neutral.js",
"test:negative": "npx babel-node examples/negative.js"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && rm -rf dist && yarn run build"
}
},
"dependencies": {
"axios": "^0.19.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"husky": "^4.2.3",
"prettier": "^1.19.1"
},
"bugs": {
"url": "https://github.com/nparsons08/isabelle-js-client/issues"
},
"directories": {
"example": "examples"
}
}