-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
70 lines (70 loc) · 1.97 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
{
"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.3",
"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.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@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",
"async": "^3.2.5",
"browserify": "^17.0.0",
"chromedriver": "^131.0.1",
"del": "^6.0.0",
"ejs": "^3.1.10",
"eslint": "^8.56.0",
"eslint-config-braintree": "6.0.0-typescript-prep-rc.2",
"express": "^4.20.1",
"gulp": "^5.0.0",
"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": "^2.8.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",
"wdio-chromedriver-service": "^8.1.1"
},
"jest": {
"testEnvironment": "jsdom",
"preset": "ts-jest",
"restoreMocks": true,
"resetMocks": true
}
}