forked from bendrucker/angularjs-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.55 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": "angular-stripe",
"version": "4.2.12",
"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.4.9",
"angular-mocks": "~1.4.9",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"browserify": "~13.0.0",
"chai": "~3.5.0",
"derequire": "~2.0.0",
"exposify": "~0.5.0",
"path": "^0.12.7",
"phantomjs": "~2.1.3",
"sinon": "~1.17.3",
"sinon-chai": "~2.8.0",
"standard": "~5.4.1",
"stripe-debug": "~2.0.0",
"uglify-loader": "^1.3.0",
"webpack": "^1.13.0",
"zuul": "~3.9.0"
},
"peerDependencies": {
"angular": ">=1.3 <=1.5"
},
"dependencies": {
"stripe-as-promised": "~2.0.0"
},
"files": [
"src/*.js",
"readme.md"
],
"standard": {
"ignore": [
"release/"
]
}
}