-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "node-alexa-smapi",
"version": "1.1.1",
"description": "A node.js client library for using the Alexa Skill Management API.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha",
"test-integration": "TEST_TYPE=integration npm test",
"test-certification": "TEST_TYPE=certification npm test",
"test-capture": "TEST_TYPE=capture npm test",
"test-with-coverage": "nyc npm test && nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tejashah88/node-alexa-smapi.git"
},
"keywords": [
"alexa",
"alexa-skill",
"skill-management",
"alexa-skills-kit",
"smapi"
],
"author": "tejashah88",
"contributors": [
"marcelobern"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tejashah88/node-alexa-smapi/issues"
},
"homepage": "https://github.com/tejashah88/node-alexa-smapi#readme",
"dependencies": {
"axios": "^0.19.0"
},
"devDependencies": {
"ask-cli": "^1.7.6",
"axios-mock-adapter": "^1.17.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.4",
"eslint": "^6.0.1",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1"
}
}