-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
65 lines (65 loc) · 1.65 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
64
65
{
"name": "angular-stripe",
"version": "5.0.0",
"description": "Angular service provider for interacting with Stripe",
"main": "./src",
"scripts": {
"test": "standard && zuul --phantom -- test/*.js",
"umd": "browserify -e . -s angularStripe -g [ exposify --expose [ --angular=angular ] ] -p derequire/plugin > ./release/angular-stripe.js",
"preversion": "npm run umd && git add -A ./release/*"
},
"repository": {
"type": "git",
"url": "git://github.com/bendrucker/angular-stripe.git"
},
"keywords": [
"angular",
"stripe",
"promise",
"wrapper"
],
"author": "Ben Drucker <[email protected]> (http://www.bendrucker.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bendrucker/angular-stripe/issues"
},
"homepage": "https://github.com/bendrucker/angular-stripe",
"devDependencies": {
"angular": "~1.5.8",
"angular-mocks": "~1.4.9",
"browserify": "~13.0.0",
"chai": "~3.5.0",
"chai-as-promised": "~5.3.0",
"derequire": "~2.0.0",
"exposify": "~0.5.0",
"phantomjs": "~2.1.3",
"sinon": "~1.17.3",
"sinon-chai": "~2.8.0",
"standard": "~5.4.1",
"stripe-debug": "~2.0.0",
"zuul": "~3.9.0"
},
"peerDependencies": {
"angular": "^1.3"
},
"dependencies": {
"angular-assert-q-constructor": "~1.0.1",
"angular-q-promisify": "~3.0.0",
"ap": "~0.2.0",
"dot-prop": "~3.0.0",
"lazy-async": "~1.0.1",
"load-script-global": "~1.0.2",
"pify": "~2.3.0",
"stripe-as-promised": "~2.1.0",
"stripe-errback": "~1.0.2"
},
"files": [
"src/*.js",
"readme.md"
],
"standard": {
"ignore": [
"release/"
]
}
}