UNPKG

1.5 kBJSONView Raw
1{
2 "name": "alexia",
3 "version": "1.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 },
27 "dependencies": {
28 "bases": "^0.2.1",
29 "lodash": "^4.13.1"
30 },
31 "devDependencies": {
32 "chai": "^3.5.0",
33 "eslint": "^2.13.0",
34 "istanbul": "^0.4.3",
35 "mocha": "^2.5.3",
36 "nodemon": "^1.9.2"
37 },
38 "engines": {
39 "node": ">=4.2.0"
40 },
41 "license": "MIT",
42 "files": [
43 "LICENSE",
44 "README.md",
45 "src/"
46 ],
47 "keywords": [
48 "alexa",
49 "alexia",
50 "echo",
51 "amazon",
52 "voice",
53 "skill",
54 "intent"
55 ],
56 "bugs": {
57 "url": "https://github.com/Accenture/alexia/issues",
58 "email": "michael.gloger@accenture.com"
59 }
60}