-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
92 lines (92 loc) · 2.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
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
90
91
92
{
"name": "braintree-web",
"version": "3.113.0",
"license": "MIT",
"main": "src/index.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/braintree/braintree-web"
},
"scripts": {
"jsdoc": "./scripts/npm-to-gulp jsdoc",
"prebuild": "npm run prettier",
"build": "./scripts/npm-to-gulp build",
"prelint": "npm run prettier",
"lint": "./scripts/npm-to-gulp lint",
"release": "./scripts/release",
"posttest": "npm run lint",
"prettier": "prettier --write .",
"test": "BRAINTREE_JS_ENV=development jest --config=jest.config.json"
},
"dependencies": {
"@braintree/asset-loader": "2.0.1",
"@braintree/browser-detection": "2.0.1",
"@braintree/event-emitter": "0.4.1",
"@braintree/extended-promise": "1.0.0",
"@braintree/iframer": "2.0.0",
"@braintree/sanitize-url": "7.0.4",
"@braintree/uuid": "1.0.0",
"@braintree/wrap-promise": "2.1.0",
"@paypal/accelerated-checkout-loader": "1.1.0",
"card-validator": "10.0.0",
"credit-card-type": "10.0.1",
"framebus": "6.0.0",
"inject-stylesheet": "6.0.1",
"promise-polyfill": "8.2.3",
"restricted-input": "3.0.5"
},
"devDependencies": {
"@ladjs/gulp-envify": "^2.0.1",
"browserify": "^17.0.0",
"browserify-derequire": "^1.1.1",
"cached-path-relative": "1.1.0",
"chalk": "^4.1.2",
"check-ecmascript-version-compatibility": "0.1.1",
"decode-uri-component": "0.2.2",
"del": "^6.0.0",
"dotenv": "^16.0.3",
"envify": "4.1.0",
"es6-shim": "^0.35.6",
"eslint": "^8.25.0",
"eslint-config-braintree": "^5.0.1",
"eslint-config-prettier": "^8.5.0",
"gulp": "^4.0.2",
"gulp-minifier": "^3.5.0",
"gulp-remove-code": "^3.0.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gzip-size": "^6.0.0",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"jsdoc": "^3.6.10",
"jsdoc-template": "braintree/jsdoc-template#3.2.0",
"json5": "2.2.3",
"loose-envify": "^1.0.0",
"merge-stream": "^2.0.0",
"minimist": "1.2.8",
"mkdirp": "^1.0.4",
"mock-xmlhttprequest": "^7.0.4",
"posix-getopt": "^1.2.1",
"prettier": "^2.6.2",
"readline-sync": "^1.4.10",
"requirejs": "^2.3.6",
"table": "^6.8.0",
"terser": "4.8.1",
"tmp": "^0.2.1",
"uglify-js": "^3.17.3",
"unreachable-branch-transform": "0.5.1",
"watchify": "^4.0.0"
},
"browserify": {
"transform": [
[
"envify",
{
"_": "purge"
}
],
"unreachable-branch-transform"
]
}
}