forked from janober/braintree-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.16 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
{
"name": "braintree-angular",
"version": "3.0.0",
"description": "Use Braintree in your Angular app",
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "npm run build && mocha test/integration test/unit",
"build": "browserify index.js > braintree-angular.dist.js",
"example": "node examples/server"
},
"repository": {
"type": "git",
"url": "https://github.com/jeffcarp/braintree-angular.git"
},
"keywords": [
"angular",
"braintree"
],
"author": "Braintree",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffcarp/braintree-angular/issues"
},
"homepage": "https://github.com/jeffcarp/braintree-angular",
"dependencies": {
"braintree-web": "^3.69.0"
},
"devDependencies": {
"angular": "^1.3.3",
"body-parser": "^1.9.3",
"braintree": "^3.1.0",
"browserify": "^13.0.1",
"express": "^4.10.4",
"mocha": "^2.0.1",
"phantom": "^2.1.2",
"standard": "^8.0.0"
},
"standard": {
"ignore": [
"*.dist.js"
],
"globals": [
"before",
"beforeEach",
"after",
"afterEach",
"it",
"describe",
"context"
]
}
}