forked from bendrucker/angular-credit-cards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.62 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
{
"name": "@66pix/angular-credit-cards",
"version": "3.1.7",
"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/66pix/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/66pix/angular-credit-cards/issues"
},
"homepage": "https://github.com/66pix/angular-credit-cards",
"devDependencies": {
"angular": "~1.5.0",
"angular-mocks": "~1.6.0",
"brfs": "^1.4.0",
"browserify": "^13.0.0",
"chai": "^3.0.0",
"derequire": "^2.0.0",
"exposify": "^0.5.0",
"phantomjs-prebuilt": "~2.1.4",
"sinon": "^1.15.3",
"sinon-chai": "^2.8.0",
"standard": "^8.0.0",
"zuul": "defunctzombie/zuul#075444eb80c4e961341ad9c2e8f7a267fbd7d211"
},
"dependencies": {
"ap": "~0.2.0",
"cast-array": "~1.0.1",
"creditcards": "~2.1.0",
"function-bind": "~1.1.0"
},
"peerDependencies": {
"angular": ">=1.3 <=1.6"
},
"files": [
"src/*.js",
"readme.md"
],
"standard": {
"ignore": [
"release/"
]
}
}