-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
67 lines (67 loc) · 1.88 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
64
65
66
67
{
"name": "ava-ia",
"description": "Agnostic virtual assistant",
"version": "0.1.2",
"main": "./lib/index.js",
"homepage": "http://github.com/ava-ia",
"author": {
"name": "AVAia Team",
"url": "http://github.com/ava-ia"
},
"contributors": [
{
"name": "Javi Jimenez Villar",
"email": "hello@soyjavi.com",
"url": "http://soyjavi.com/"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/ava-ia/core.git"
},
"bugs": {
"url": "https://github.com/ava-ia/core/issues",
"email": "issues@react-toolbox.com"
},
"scripts": {
"start": "npm run build & npm run terminal",
"test": "npm run mocha",
"build": "babel src --out-dir lib",
"terminal": "node index.js Ava, Do you know if tomorrow will rain in Chiang Mai?",
"lint": "eslint src/**",
"mocha": "mocha --recursive --compilers js:babel-register --require babel-polyfill",
"singletest": "mocha test/actions/*currency*.js --compilers js:babel-register --require babel-polyfill"
},
"license": "MIT",
"dependencies": {
"alchemy-api": "1.3.3",
"bayes": "0.0.7",
"chrono-node": "1.3.5",
"cld": "2.4.5",
"google-translate-api": "2.3.0",
"lowdb": "0.16.2",
"moment": "2.18.1",
"nlp_compromise": "6.5.3",
"node-fetch": "1.7.1",
"sentiment": "4.0.0",
"weather-js": "2.0.0",
"world-countries": "1.8.1",
"wtf_wikipedia": "1.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"colors": "^1.1.2",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"mocha": "^3.4.2"
}
}