forked from CardJs/CardJs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.06 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
{
"name": "card-js",
"authors": [
"Colin Stannard <[email protected]>"
],
"description": "Credit Card input form with validation",
"version": "1.3.1",
"main": "card-js.min.js",
"moduleType": [
"globals"
],
"keywords": [
"Card JS",
"Credit Card Input",
"Credit Card Form",
"Credit Card Validation"
],
"repository": {
"type": "git",
"url": "https://github.com/CardJs/CardJs"
},
"license": "MIT",
"homepage": "https://cardjs.co.uk",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"scripts": {
"build": "grunt build",
"watch": "grunt"
},
"dependences": {},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^2.2.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-less": "^1.4.1",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-contrib-uglify": "^3.1.0",
"grunt-contrib-watch": "^1.0.0",
"rimraf": "^2.6.2",
"uglify-js": "^3.1.6"
}
}