-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "ussd-menu-builder",
"version": "1.2.0",
"description": "Easily compose USSD menus using states, compatible with Africastalking API",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha test",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha test -- -R spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/habbes/ussd-menu-builder"
},
"keywords": [
"ussd-menu-builder",
"ussd",
"africastalking",
"ussd-menu",
"hubtel"
],
"author": "Habbes <hello@habbes.xyz>",
"license": "MIT",
"bugs": {
"url": "https://github.com/habbes/ussd-menu-builder/issues"
},
"homepage": "https://github.com/habbes/ussd-menu-builder",
"dependencies": {
"async": "^2.6.1"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0"
}
}