forked from bendrucker/angular-credit-cards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
{
"name": "angular-credit-cards",
"version": "2.3.3",
"description": "Angular directives for formatting and validating credit card inputs",
"main": "./src",
"scripts": {
"test": "standard && zuul --phantom -- test/*.js",
"umd": "browserify -e . -s angularCreditCards -t [exposify --expose [ --angular=angular ] ] -p derequire/plugin > ./release/angular-credit-cards.js",
"preversion": "npm run umd && git add -A ../release/* && git commit -m 'UMD Build'"
},
"repository": {
"type": "git",
"url": "https://github.com/bendrucker/angular-credit-cards.git"
},
"keywords": [
"angular",
"credit",
"card",
"payments",
"validation",
"directive",
"form"
],
"author": "Ben Drucker <[email protected]> (http://www.bendrucker.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bendrucker/angular-credit-cards/issues"
},
"homepage": "https://github.com/bendrucker/angular-credit-cards",
"devDependencies": {
"angular": "~1.4.0",
"angular-mocks": "~1.4.0",
"brfs": "~1.4.0",
"browserify": "~10.2.4",
"chai": "~3.0.0",
"derequire": "~2.0.0",
"exposify": "~0.4.1",
"phantomjs": "~1.9.17",
"sinon": "~1.15.3",
"sinon-chai": "~2.8.0",
"standard": "~4.2.1",
"zuul": "~3.0.0"
},
"dependencies": {
"ap": "~0.2.0",
"creditcards": "~1.5.0",
"function-bind": "~1.0.2"
},
"peerDependencies": {
"angular": ">=1.3 <1.5"
},
"files": [
"src/*.js",
"readme.md"
],
"standard": {
"ignore": [
"release/"
]
}
}