-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.05 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
68
69
70
71
72
73
74
75
76
{
"name": "@ama-team/voxengine-scenario-framework",
"version": "0.2.0",
"description": "Framework to run VoxImplant scenarios",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf build",
"test": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha",
"test:report:publish:coverage": "cat build/report/coverage/lcov.info | node_modules/.bin/coveralls",
"test:report:publish": "npm run test:report:publish:coverage",
"test:report": "npm run test:report:allure",
"test:report:allure": "allure generate -o build/report/allure -- build/data/allure",
"doc": "node_modules/.bin/jsdoc -d build/doc lib"
},
"engines": {},
"repository": {
"type": "git",
"url": "https://github.com/ama-team/voxengine-scenario-framework.git"
},
"keywords": [
"voxengine",
"voximplant"
],
"author": {
"name": "AMA Team",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Etki",
"email": "[email protected]"
}
],
"contributors": [
{
"name": "Etki",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ama-team/voxengine-scenario-framework/issues"
},
"homepage": "https://github.com/ama-team/voxengine-scenario-framework#readme",
"dependencies": {
"@ama-team/voxengine-sdk": "^0.4.0"
},
"devDependencies": {
"@ama-team/voxengine-definitions": "^0.1.0",
"@ama-team/voxengine-stubs": "^0.1.0",
"bluebird": "^3.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.13.1",
"fs-extra": "^4.0.1",
"glob": "^7.1.2",
"istanbul": "^0.4.5",
"jake": "^8.0.15",
"js-yaml": "^3.9.1",
"jsdoc": "^3.5.4",
"karma": "^1.7.0",
"karma-coverage": "^1.1.1",
"mocha": "^3.5.0",
"mocha-allure-reporter": "^1.3.2",
"mocha-junit-reporter": "^1.13.0",
"mocha-lcov-reporter": "^1.3.0",
"mocha-multi": "^0.9.1",
"mocha-multi-reporters": "^1.1.4",
"promise": "^7.3.1",
"sinon": "^3.0.0",
"standard": "^10.0.3"
},
"standard": {
"ignore": ["examples"]
}
}