-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 KB
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
{
"name": "eway-rapid",
"version": "1.2.1",
"description": "eWAY Rapid Node.js library",
"keywords": [
"eway",
"rapid",
"payments",
"credit cards"
],
"author": "eWAY (https://www.eway.com.au)",
"homepage": "http://github.com/eWAYPayment/eway-rapid-node",
"license": "MIT",
"main": "lib/Rapid.js",
"scripts": {
"lint": "jshint lib tests",
"test": "blue-tape tests/unit/**/*.test.js | faucet",
"test:coverage": "istanbul cover blue-tape -- tests/unit/**/*.test.js",
"test:integration": "blue-tape tests/integration/**/*.test.js | faucet",
"doc": "jsdoc -c jsdoc.conf.json",
"clean": "rimraf coverage docs",
"pretest": "npm run lint",
"pretest:coverage": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/eWAYPayment/eway-rapid-node"
},
"bugs": "https://github.com/eWAYPayment/eway-rapid-node/issues",
"engines": {
"node": ">= v0.10.0"
},
"dependencies": {
"bluebird": "^2.10.2",
"express-uri-template": "^0.1.0",
"lodash": "^3.10.1",
"request-promise": "^2.0.1"
},
"devDependencies": {
"blue-tape": "^0.1.10",
"dotenv": "^1.2.0",
"faucet": "0.0.1",
"istanbul": "^0.3.17",
"jsdoc": "^3.3.2",
"jshint": "^2.8.0",
"nock": "^2.10.0",
"rewire": "^2.3.4",
"rimraf": "^2.4.2",
"sinon": "^1.15.4"
}
}