-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
82 lines (82 loc) · 3.75 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
{
"name": "splunk-rum",
"version": "0.0.15",
"description": "",
"private": true,
"scripts": {
"start": "npm-run-all -s build:development start:_execute",
"start:_execute": "node integration-tests/devServer/runDevServer.js",
"dist": "rollup -c",
"test": "nyc karma start --single-run",
"lint": "eslint src/*.js test/*.js integration-tests/**/*.js integration-tests/**/**/*.js",
"lint:markdown": "markdownlint README.md docs/*.md",
"lint:fix": "eslint --fix src/*.js test/*.js integration-tests/**/*.js integration-tests/**/**/*.js",
"test:integration:local": "npm-run-all -s build:development test:integration:local:_execute",
"test:integration:local:firefox": "npm-run-all -s build:development test:integration:local:firefox:_execute",
"test:integration:local:chrome": "npm-run-all -s build:development test:integration:local:chrome:_execute",
"test:integration:local:safari": "npm-run-all -s build:development test:integration:local:safari:_execute",
"test:integration:local:all": "npm-run-all -s build:development test:integration:local:all:_execute",
"test:integration:local:_execute": "nightwatch -c ./integration-tests/utils/local.conf.js -e headlessChrome",
"test:integration:local:all:_execute": "nightwatch -c ./integration-tests/utils/local.conf.js -e headlessChrome,headlessFirefox,chrome,safari",
"test:integration:local:firefox:_execute": "nightwatch -c ./integration-tests/utils/local.conf.js -e firefox",
"test:integration:local:chrome:_execute": "nightwatch -c ./integration-tests/utils/local.conf.js -e chrome",
"test:integration:local:safari:_execute": "nightwatch -c ./integration-tests/utils/local.conf.js -e safari",
"test:integration:local:headlessFirefox:_execute": "nightwatch --verbose -c ./integration-tests/utils/local.conf.js -e headlessFirefox",
"test:integration:_selfSignCerts": "(cd utils && cd certs && openssl req -nodes -new -x509 -keyout server.key -out server.cert)",
"test:integration:_build": "npm-run-all -s build:*",
"test:performance": "node ./performance-tests/runner.js",
"build:debug": "DEBUG_BUILD=1 npx rollup -c",
"build:prod": "npx rollup -c",
"build:development": "npm-run-all -s build:debug build:prod",
"build:release": "npm-run-all -s lint test build:debug build:prod"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"shimmer": "^1.2.1",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"body-parser": "^1.19.0",
"browserstack-local": "^1.4.8",
"chromedriver": "^87.0.0",
"chrome-launcher": "^0.13.4",
"codecov": "^3.8.1",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"eslint": "^7.13.0",
"eslint-plugin-header": "^3.1.0",
"express": "^4.17.1",
"geckodriver": "^1.20.0",
"generate-source-map": "0.0.5",
"http-mitm-proxy": "^0.9.0",
"karma": "^5.2.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.2",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.5",
"karma-spec-reporter": "^0.0.32",
"karma-websocket-server": "^1.0.0",
"markdownlint-cli": "^0.26.0",
"lighthouse": "^6.5.0",
"mocha": "^8.2.1",
"nightwatch": "^1.5.1",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"puppeteer": "^5.5.0",
"rollup": "^2.33.1",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"selenium-server": "^3.141.59",
"typescript": "^4.0.5",
"ws": "^7.4.0"
}
}