forked from braintree/braintree-web-drop-in
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.43 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "braintree-web-drop-in",
"version": "1.16.0",
"main": "src/index.js",
"private": true,
"scripts": {
"build": "gulp build",
"development": "gulp development",
"build:gh-pages": "gulp build:gh-pages",
"lint": "eslint src test",
"pretest": "npm run lint",
"test": "karma start test/config/karma.js --single-run",
"test:integration": ". ./.env && bundle exec rake sauce:spec test_files=spec",
"test:integration:paypal-only": "RUN_PAYPAL_ONLY=true npm run test:integration",
"test:integration:paypal-skipped": "SKIP_PAYPAL=true npm run test:integration",
"test:integration:kill": "ps -ef | awk '/rspec/ {print $2}' | xargs kill",
"test:publishing": "mocha test/publishing",
"deploy:gh-pages": "./scripts/deploy-gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/braintree/braintree-web-dropin.git"
},
"license": "MIT",
"devDependencies": {
"brfs": "1.6.1",
"browserify": "16.2.2",
"chai": "4.1.2",
"connect": "3.6.6",
"del": "3.0.0",
"envify": "4.1.0",
"eslint": "4.19.1",
"eslint-config-braintree": "2.0.0",
"finalhandler": "1.1.1",
"gulp": "3.9.1",
"gulp-autoprefixer": "5.0.0",
"gulp-brfs": "0.1.0",
"gulp-clean-css": "3.9.4",
"gulp-envify": "1.0.0",
"gulp-rename": "1.2.2",
"gulp-replace": "0.6.1",
"gulp-sass": "4.0.1",
"gulp-size": "3.0.0",
"gulp-streamify": "1.0.2",
"gulp-uglify": "3.0.0",
"gulp-util": "3.0.8",
"is-uuid": "1.0.2",
"jsdoc": "3.5.5",
"jsdoc-template": "braintree/jsdoc-template#3.2.0",
"karma": "2.0.2",
"karma-browserify": "5.2.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-phantomjs-launcher": "1.0.4",
"mkdirp": "0.5.1",
"mocha": "5.1.1",
"phantomjs-prebuilt": "2.1.16",
"run-sequence": "2.2.1",
"sauce-connect-launcher": "0.14.0",
"serve-static": "1.13.2",
"sinon": "5.0.7",
"sinon-chai": "3.0.0",
"vinyl-source-stream": "2.0.0"
},
"dependencies": {
"braintree-web": "3.42.0",
"@braintree/asset-loader": "0.2.1",
"@braintree/browser-detection": "1.7.0",
"@braintree/class-list": "0.1.0",
"promise-polyfill": "8.1.0",
"@braintree/wrap-promise": "1.1.1"
},
"browserify": {
"transform": [
"brfs",
[
"envify",
{
"_": "purge"
}
]
]
},
"browserslist": [
"last 2 versions",
"iOS 8"
]
}