-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "sparkpost",
"version": "2.1.4",
"description": "A Node.js wrapper for interfacing with your favorite SparkPost APIs",
"main": "./lib/sparkpost.js",
"scripts": {
"coveralls": "cat ./test/reports/lcov.info | coveralls",
"pretest": "eslint lib/**",
"test": "istanbul cover --report lcov --dir test/reports/ _mocha --recursive ./test/spec --grep ./test/**/*.spec.js -- --colors --reporter spec",
"postversion": "git push upstream && git push --tags upstream"
},
"keywords": [
"email",
"messaging"
],
"repository": {
"type": "git",
"url": "https://github.com/SparkPost/node-sparkpost"
},
"author": "Message Systems, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SparkPost/node-sparkpost/issues"
},
"homepage": "https://github.com/SparkPost/node-sparkpost",
"engines": {
"node": ">=4"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^3.0.2",
"eslint": "^3.12.2",
"eslint-config-sparkpost": "1.3.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nock": "^9.0.0",
"sinon": "^1.17.5",
"sinon-as-promised": "^4.0.2",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"lodash": "^4.17.2",
"request": "^2.79.0"
}
}