forked from braintree/braintree-web-drop-in
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.64 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
89
{
"name": "braintree-web-drop-in",
"version": "1.29.0",
"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",
"hint": "hint http://localhost:4567",
"pretest": "npm run lint",
"test": "jest",
"test:hint": "npm-run-all -n -s build -pr server hint",
"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.5.7",
"@wdio/cli": "^7.5.7",
"@wdio/local-runner": "^7.5.7",
"@wdio/mocha-framework": "^7.5.3",
"@wdio/spec-reporter": "^7.5.7",
"@wdio/sync": "^7.5.7",
"ansi-colors": "^4.1.0",
"brfs": "^2.0.2",
"browserify": "^17.0.0",
"browserify-versionify": "^1.0.6",
"chai": "^4.3.4",
"connect": "^3.7.0",
"del": "^6.0.0",
"dotenv": "^9.0.2",
"es6-shim": "^0.35.6",
"eslint": "^7.26.0",
"eslint-config-braintree": "^4.0.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-less": "^4.0.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-size": "^4.0.0",
"gulp-streamify": "1.0.2",
"gulp-uglify": "^3.0.2",
"hint": "^5.3.3",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"jsdoc-template": "braintree/jsdoc-template#3.2.0",
"mkdirp": "^1.0.4",
"mocha": "^8.4.0",
"npm-run-all": "^4.1.5",
"serve-static": "^1.14.1",
"through2": "^4.0.2",
"vinyl": "^2.2.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^4.0.0",
"webhint-configuration-braintree-sdk": "github:braintree/webhint-configuration-braintree-sdk#semver:0.0.4"
},
"dependencies": {
"@braintree/asset-loader": "0.4.4",
"@braintree/browser-detection": "1.11.1",
"@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.76.4",
"promise-polyfill": "8.2.0"
},
"browserify": {
"transform": [
"brfs",
"browserify-versionify"
]
},
"browserslist": [
"last 2 versions",
"iOS 8"
]
}