forked from paymill/paymill-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.51 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"author": "Emilian Stoilkov <[email protected]>",
"name": "paymill-wrapper",
"contributors": [
{
"name": "Vassil Nikolov",
"email": "[email protected]"
},
{
"name": "Emilian Stoilkov ",
"email": "[email protected]"
}
],
"description": "PAYMILL REST API Javascrip wrapper. Work with Node, parse.com and is easily extendable for other platforms",
"version": "2.2.0",
"keywords": [
"paymill",
"wrapper",
"rest",
"api",
"payment",
"gateway"
],
"homepage": "https://github.com/paymill/paymill-js",
"repository": {
"type": "git",
"url": "https://github.com/paymill/paymill-js.git"
},
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/paymill/paymill-js"
},
"license": "MIT",
"main": "paymill.node.js",
"scripts": {
"test": "istanbul cover _mocha -- -R spec -t 7000",
"pretest": "grunt concat",
"posttest": "jshint paymill.node.js",
"docs": "grunt concat && jsdoc paymill.node.js readme.md",
"stest": "grunt concat && mocha --timeout 5000"
},
"jshintConfig": {
"node": true,
"globals": {
"Parse": false
}
},
"dependencies": {
"underscore": "~1.8.3",
"when": "~3.7.0"
},
"devDependencies": {
"jsdoc": "~3.3.0",
"jshint": "~2.8.0",
"grunt-cli": "~0.1.9",
"mocha": "~2.2.5",
"istanbul": "~0.3.2",
"expect.js": "~0.3.1",
"grunt": "~0.4.1",
"grunt-contrib-concat": "~0.5.0",
"codeclimate-test-reporter": "~0.1.0"
}
}