forked from confuser/node-dotmailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "dotmailer",
"description": "A 3rd party dotMailer v2 REST API implementation",
"version": "1.0.0",
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"author": "James Mortemore <[email protected]>",
"license": "ISC",
"scripts": {
"lint": "./node_modules/.bin/jshint .",
"checkStyle": "./node_modules/.bin/jscs .",
"pretest": "npm run-script lint && npm run-script checkStyle",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test",
"posttest": "./node_modules/.bin/istanbul check-coverage && rm -rf coverage",
"prepublish": "npm test && npm prune"
},
"repository": {
"type": "git",
"url": "[email protected]:confuser/node-dotmailer.git"
},
"bugs": {
"url": "https://github.com/confuser/node-dotmailer/issues"
},
"keywords": [
"dotmailer",
"api",
"v2",
"rest"
],
"dependencies": {
"lodash.assign": "^2.4.1",
"request": "^2.36.0"
},
"devDependencies": {
"mocha": "^1.18.2",
"istanbul": "^0.2.7",
"jshint": "^2.5.0",
"jscs": "1.4.5",
"should": "^4.0.0",
"nock": "^0.32.3"
}
}