forked from DataDog/browser-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.49 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.49 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "browser-sdk",
"description": "browser SDK",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "scripts/cli update_submodule",
"build": "lerna run build --stream",
"build:bundle": "lerna run build:bundle --stream",
"format": "prettier --check .",
"lint": "scripts/cli lint .",
"typecheck": "scripts/cli typecheck . && scripts/cli typecheck test/e2e",
"dev": "node scripts/dev-server.js",
"release": "lerna version --exact",
"version": "scripts/cli version",
"publish:npm": "TARGET_DATACENTER=us BUILD_MODE=release yarn build && lerna publish from-package",
"fail": "./scripts/fail.sh",
"test": "yarn test:unit",
"test:unit": "karma start ./test/unit/karma.local.conf.js",
"test:unit:bs": "node ./scripts/bs-wrapper.js karma start test/unit/karma.bs.conf.js",
"test:e2e": "BUILD_MODE=e2e-test yarn build && (cd test/app && rm -rf node_modules && yarn && yarn build) && wdio test/e2e/wdio.local.conf.js",
"test:e2e:bs": "BUILD_MODE=e2e-test yarn build && (cd test/app && rm -rf node_modules && yarn && yarn build) && node ./scripts/bs-wrapper.js wdio test/e2e/wdio.bs.conf.js",
"test:compat:tsc": "yarn build && (cd test/app && rm -rf node_modules && yarn && yarn compat:tsc) || yarn fail 'typescript 3.0 compatibility broken'",
"test:compat:ssr": "yarn build && (cd test/app && rm -rf node_modules && yarn && yarn compat:ssr) || yarn fail 'server side rendering compatibility broken'",
"rum-events-format:sync": "scripts/cli update_submodule && scripts/cli build_json2type && node scripts/generate-schema-types.js"
},
"devDependencies": {
"@types/connect-busboy": "0.0.2",
"@types/cors": "2.8.7",
"@types/express": "4.17.8",
"@types/jasmine": "3.5.10",
"@types/sinon": "9.0.10",
"@typescript-eslint/eslint-plugin": "4.12.0",
"@typescript-eslint/parser": "4.12.0",
"@wdio/browserstack-service": "6.1.4",
"@wdio/cli": "6.1.4",
"@wdio/jasmine-framework": "6.1.3",
"@wdio/junit-reporter": "6.1.9",
"@wdio/local-runner": "6.1.3",
"@wdio/selenium-standalone-service": "6.0.16",
"@wdio/spec-reporter": "6.0.16",
"@wdio/sync": "6.1.0",
"ajv": "6.12.6",
"browserstack-local": "1.4.5",
"codecov": "3.7.1",
"connect-busboy": "0.0.2",
"cors": "2.8.5",
"emoji-name-map": "1.2.8",
"eslint": "7.17.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.13",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-unicorn": "25.0.1",
"express": "4.17.1",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine-core": "3.5.0",
"js-polyfills": "0.1.42",
"json-schema-to-typescript": "bcaudan/json-schema-to-typescript#bcaudan/add-readonly-support",
"karma": "5.2.3",
"karma-browserstack-launcher": "1.6.0",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "2.1.1",
"karma-jasmine": "3.1.1",
"karma-junit-reporter": "2.0.1",
"karma-sourcemap-loader": "0.3.8",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "4.0.2",
"lerna": "3.20.2",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"replace-in-file": "5.0.2",
"sinon": "9.2.2",
"string-replace-loader": "2.2.0",
"ts-loader": "6.2.2",
"ts-node": "8.8.1",
"tsconfig-paths-webpack-plugin": "3.2.0",
"typescript": "3.8.3",
"webdriverio": "6.1.4",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"webpack-dev-middleware": "3.7.2"
}
}