-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.3 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
{
"name": "paymentez-js",
"authors": [
"Developer Team <dev@paymentez>"
],
"description": "Credit Card input form with validation and allows you to create a token with credit/debit card details in your web apps, by preventing sensitive card data from crossing your server (More information, read PCI compliance).",
"version": "2.14.2",
"main": "./payment_stable.min.js",
"homepage": "https://paymentez.com",
"moduleType": [
"globals"
],
"keywords": [
"Paymentez",
"Credit Card Input",
"Credit Card Form",
"Credit Card Validation",
"Tokenize Card"
],
"repository": {
"type": "git",
"url": "https://github.com/paymentez/paymentez.js"
},
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependences": {
"minimatch": ">=3.0.2",
"sshpk": ">=1.13.2",
"lodash": ">=4.17.21",
"cryptiles": ">=4.1.2",
"hoek": ">=4.2.1"
},
"devDependencies": {
"grunt": "^1.0.4",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-connect": "^2.0.0",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-less": "^2.0.0",
"grunt-contrib-nodeunit": "^3.0.0",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-contrib-watch": "^1.1.0"
}
}