-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "batch-notifications",
"version": "0.3.1",
"description": "NodeJS client wrapper for the Batch.com notifications server API",
"main": "./index.js",
"scripts": {
"lint": "eslint --quiet --cache --format codeframe .",
"lint:fix": "eslint --fix .",
"test": "NODE_ENV=test mocha",
"ci-coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">=6.x"
},
"repository": {
"type": "git",
"url": "https://github.com/nomadeducation/batch-notifications-node.git"
},
"keywords": [
"node",
"batch.com",
"notification",
"wrapper"
],
"author": "Nomad Education",
"license": "MIT",
"bugs": {
"url": "https://github.com/nomadeducation/batch-notifications-node/issues"
},
"homepage": "https://github.com/nomadeducation/batch-notifications-node#readme",
"dependencies": {
"ajv": "^5.0.1",
"axios": "^0.18.0",
"bunyan": "^1.8.12",
"lodash": "^4.17.5"
},
"devDependencies": {
"axios-mock-adapter": "^1.15.0",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"eslint": "^4.19.0",
"eslint-config-nomadeducation": "^1.1.2",
"istanbul": "^0.4.5",
"mocha": "^3.3.0"
}
}