UNPKG

1.93 kBJSONView Raw
1{
2 "name": "alexia",
3 "version": "2.0.1",
4 "description": "A Framework for creating Amazon Echo (Alexa) skills using Node.js",
5 "main": "src/alexia.js",
6 "repository": {
7 "type": "git",
8 "url": "git+https://github.com/Accenture/alexia.git"
9 },
10 "author": {
11 "name": "Matthew D. Lancaster",
12 "email": "matthew.d.lancaster@accenture.com",
13 "url": "https://www.accenture.com/us-en"
14 },
15 "contributors": [
16 "Slavomir Kubacka <slavomir.kubacka@accenture.com>",
17 "Michal Morvay <michal.morvay@accenture.com",
18 "Michael Gloger <michael.gloger@accenture.com>"
19 ],
20 "scripts": {
21 "lint": "eslint .",
22 "lint:fix": "npm run lint -- --fix",
23 "test": "istanbul cover node_modules/mocha/bin/_mocha -- -u exports --reporter spec",
24 "test-lcov": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- -u exports --reporter spec",
25 "test:dev": "nodemon --exec \"mocha || true\"",
26 "toc": "doctoc README.md --github"
27 },
28 "dependencies": {
29 "bases": "^0.2.1",
30 "debug": "^2.3.0",
31 "doctoc": "^1.2.0",
32 "glob": "^7.1.1",
33 "lodash": "^4.16.6",
34 "stack-trace": "0.0.9"
35 },
36 "devDependencies": {
37 "chai": "^3.5.0",
38 "eslint": "^3.9.1",
39 "eslint-config-standard": "^6.2.1",
40 "eslint-plugin-promise": "^3.3.1",
41 "eslint-plugin-standard": "^2.0.1",
42 "hapi": "^15.2.0",
43 "istanbul": "^0.4.5",
44 "mocha": "^3.1.2",
45 "nodemon": "^1.11.0",
46 "request": "^2.78.0",
47 "rimraf": "^2.5.4",
48 "sinon": "^1.17.6"
49 },
50 "engines": {
51 "node": ">=4.2.0"
52 },
53 "license": "MIT",
54 "files": [
55 "LICENSE",
56 "README.md",
57 "src/"
58 ],
59 "keywords": [
60 "alexa",
61 "alexia",
62 "echo",
63 "amazon",
64 "voice",
65 "skill",
66 "intent"
67 ],
68 "bugs": {
69 "url": "https://github.com/Accenture/alexia/issues",
70 "email": "michael.gloger@accenture.com"
71 }
72}