-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 975 Bytes
/
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
{
"name": "fuzzy.ai",
"version": "1.0.6",
"description": "Interface to fuzzy.ai API",
"keywords": [
"fuzzy",
"machine learning",
"machine intelligence"
],
"homepage": "http://github.com/fuzzy-ai/nodejs",
"bugs": "https://github.com/fuzzy-ai/nodejs/issues",
"license": "Apache-2.0",
"main": "lib/fuzzy.ai.js",
"files": [
"lib",
"test"
],
"scripts": {
"test": "vows test/*-test.js",
"lint": "eslint lib/*.js test/*.js"
},
"dependencies": {
"@fuzzy-ai/microservice-client": "^1.0.7",
"lodash": "^4.17.10"
},
"devDependencies": {
"eslint": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"vows": "^0.8.2"
},
"repository": {
"type": "git",
"url": "http://github.com/fuzzy-ai/nodejs.git"
},
"engines": {
"node": ">=6.0.0"
}
}