-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2 KB
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
{
"name": "framebus",
"description": "Framebus allows you to easily send messages across frames (and iframes) with a simple bus.",
"repository": {
"type": "git",
"url": "git://github.com/braintree/framebus.git"
},
"homepage": "https://github.com/braintree/framebus",
"version": "6.0.5",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "prettier --write .",
"build": "tsc --declaration",
"lint": "eslint --ext js,ts .",
"pretest": "npm run lint",
"test:unit": "jest spec/unit/",
"pretest:functional": "gulp functional:prep",
"test:functional": "wdio wdio.conf.js",
"test": "npm run test:unit && npm run test:functional",
"prestart": "npm run pretest:functional",
"start": "./bin/www"
},
"license": "MIT",
"author": "braintree <[email protected]>",
"dependencies": {
"@braintree/uuid": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@wdio/cli": "^9.21.1",
"@wdio/globals": "^9.17.0",
"@wdio/local-runner": "^9.21.0",
"@wdio/mocha-framework": "^9.21.0",
"@wdio/spec-reporter": "^9.20.0",
"@wdio/types": "^9.20.0",
"async": "^3.2.6",
"browserify": "^17.0.1",
"chromedriver": "^143.0.3",
"del": "^8.0.1",
"ejs": "^3.1.10",
"eslint": "^8.56.0",
"eslint-config-braintree": "6.0.0-typescript-prep-rc.2",
"eslint-plugin-prettier": "^5.0.0",
"express": "^4.20.1",
"gulp": "^5.0.1",
"gulp-concat": "^2.4.2",
"gulp-remove-code": "^3.0.4",
"gulp-size": "^3.0.0",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^3.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"morgan": "^1.10.0",
"prettier": "^3.7.4",
"ts-jest": "^29.0.5",
"tsify": "^5.0.4",
"typescript": "^5.3.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"jest": {
"testEnvironment": "jsdom",
"preset": "ts-jest",
"restoreMocks": true,
"resetMocks": true
}
}