forked from braintree/braintree-web-drop-in
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.46 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
{
"name": "braintree-web-drop-in",
"version": "1.33.7",
"main": "src/index.js",
"private": true,
"scripts": {
"build": "gulp build",
"development": "gulp development",
"server": "gulp server",
"build:gh-pages": "gulp build:gh-pages",
"lint": "eslint src test",
"pretest": "npm run lint",
"test": "jest",
"test:integration": "wdio wdio.conf.js",
"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": {
"@wdio/browserstack-service": "^7.25.2",
"@wdio/cli": "^7.25.2",
"@wdio/local-runner": "^7.25.2",
"@wdio/mocha-framework": "^7.25.2",
"@wdio/spec-reporter": "^7.25.1",
"@wdio/sync": "^7.25.2",
"ansi-colors": "^4.1.3",
"brfs": "^2.0.2",
"browserify": "^17.0.0",
"browserify-versionify": "^1.0.6",
"chai": "^4.3.6",
"connect": "^3.7.0",
"del": "^6.0.0",
"dotenv": "^16.0.3",
"es6-shim": "^0.35.6",
"eslint": "^8.26.0",
"eslint-config-braintree": "^5.0.1",
"fancy-log": "^2.0.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-less": "^5.0.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-size": "^4.0.1",
"gulp-streamify": "1.0.2",
"gulp-uglify": "^3.0.2",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"jsdoc": "^3.6.11",
"jsdoc-template": "braintree/jsdoc-template#3.2.0",
"mkdirp": "^1.0.4",
"mocha": "^10.1.0",
"npm-run-all": "^4.1.5",
"serve-static": "^1.14.2",
"through2": "^4.0.2",
"vinyl": "^3.0.0",
"vinyl-source-stream": "^2.0.0",
"watchify": "^4.0.0"
},
"dependencies": {
"@braintree/asset-loader": "0.4.4",
"@braintree/browser-detection": "1.14.0",
"@braintree/class-list": "0.2.0",
"@braintree/event-emitter": "0.4.1",
"@braintree/uuid": "0.1.0",
"@braintree/wrap-promise": "2.1.0",
"braintree-web": "3.88.3",
"promise-polyfill": "8.2.3"
},
"browserify": {
"transform": [
"brfs",
"browserify-versionify"
]
},
"browserslist": [
"last 2 versions",
"iOS 8"
]
}