This repository has been archived by the owner on Sep 25, 2023. It is now read-only.
forked from bugsnag/bugsnag-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 2.01 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
{
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-arrow-functions": "^7.0.0",
"@babel/plugin-transform-block-scoping": "^7.0.0",
"@babel/plugin-transform-classes": "^7.0.0",
"@babel/plugin-transform-computed-properties": "^7.0.0",
"@babel/plugin-transform-destructuring": "^7.0.0",
"@babel/plugin-transform-member-expression-literals": "^7.0.0",
"@babel/plugin-transform-parameters": "^7.0.0",
"@babel/plugin-transform-property-literals": "^7.0.0",
"@babel/plugin-transform-shorthand-properties": "^7.0.0",
"@babel/plugin-transform-spread": "^7.0.0",
"@babel/plugin-transform-template-literals": "^7.0.0",
"babelify": "^10.0.0",
"browser-pack-flat": "^3.2.0",
"browserify": "^16.2.2",
"browserify-versionify": "^1.0.6",
"envify": "^4.1.0",
"exorcist": "^1.0.1",
"lerna": "^2.11.0",
"standard": "^11.0.1",
"uglify-js": "^3.4.9"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --scope '@bugsnag/node' --scope '@bugsnag/browser' && lerna run build --ignore '@bugsnag/node' --ignore '@bugsnag/browser'",
"test:lint": "standard",
"test:unit": "lerna run test --ignore '@bugsnag/browser' --ignore '@bugsnag/node'",
"test:types": "lerna run test:types",
"test:test-container-registry-login": "$(aws ecr get-login --profile=opensource --no-include-email)",
"test:build-browser-container": "docker-compose build --pull browser-maze-runner",
"test:build-node-container": "docker-compose build --pull node-maze-runner",
"test:browser": "npm run test:build-browser-container && docker-compose run --use-aliases browser-maze-runner",
"test:node": "npm run test:build-node-container && docker-compose run --use-aliases node-maze-runner"
},
"standard": {
"ignore": [
"dist",
"examples",
"features",
"**/node_modules/**",
"fixtures"
]
}
}