-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 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
{
"name": "comprafacil",
"version": "1.1.1",
"description": "CompraFácil payment gateway wrapper",
"homepage": "https://github.com/log-oscon/node-comprafacil",
"license": "GPL-2.0+",
"repository": "log-oscon/node-comprafacil",
"author": [
{
"name": "Sérgio Santos",
"email": "me@s3rgiosan.com",
"homepage": "https://github.com/s3rgiosan"
},
{
"name": "log.OSCON, Lda.",
"email": "engenharia@log.pt",
"homepage": "http://log.pt/"
}
],
"keywords": [
"comprafacil",
"hipay",
"wrapper",
"api",
"payment",
"gateway"
],
"main": "index.js",
"devDependencies": {
"chai": "*",
"jshint": "^2.8.0",
"jshint-stylish": "^2.0.0",
"mocha": "*",
"sinon": "^1.15.4"
},
"dependencies": {
"compress": "^0.99.0",
"lodash": "^4.17.19",
"soap": "^0.9.1"
},
"scripts": {
"beefy": "beefy index.js:main.js --open",
"jshint": "jshint --reporter node_modules/jshint-stylish/index.js lib/* index.js",
"mocha": "node_modules/.bin/mocha --reporter spec test",
"test": "npm run jshint && npm run mocha"
}
}