Bug 1891688: Don't rely on static_assert(false) being valid in uninstantiated templat...
[gecko.git] / devtools / client / debugger / package.json
blob4c3417af3572e3714a1c8929cd4d5a5bcc58185e
2   "name": "debugger",
3   "version": "0.6.0",
4   "license": "MPL-2.0",
5   "repository": {
6     "url": "git://github.com/firefox-devtools/debugger.git",
7     "type": "git"
8   },
9   "bugs": {
10     "url": "https://github.com/firefox-devtools/debugger/issues"
11   },
12   "homepage": "https://github.com/firefox-devtools/debugger#readme",
13   "engineStrict": true,
14   "scripts": {
15     "license-check": "devtools-license-check",
16     "links": "ls -l node_modules/ | grep ^l || echo 'no linked packages'",
17     "test": "TZ=Africa/Nairobi jest",
18     "test-ci": "TZ=Africa/Nairobi jest --json",
19     "test:watch": "jest --watch",
20     "test:coverage": "yarn test --coverage",
21     "test:all": "yarn test",
22     "watch": "node bin/watch"
23   },
24   "dependencies": {
25     "acorn": "~8.8.2",
26     "react": "16.8.6",
27     "react-dom": "16.8.6",
28     "react-redux": "^5.0.7",
29     "reselect": "4.1.5",
30     "source-map": "0.7.4",
31     "wasmparser": "^3.1.1"
32   },
33   "private": true,
34   "workspaces": [
35     "packages/*"
36   ],
37   "files": [
38     "src",
39     "assets"
40   ],
41   "greenkeeper": {
42     "ignore": [
43       "react",
44       "react-dom",
45       "react-redux",
46       "redux",
47       "codemirror"
48     ]
49   },
50   "main": "src/main.js",
51   "author": "Jason Laster <jlaster@mozilla.com>",
52   "devDependencies": {
53     "@babel/types": "^7.23.0",
54     "babel-plugin-dynamic-import-node": "^2.3.3",
55     "@babel/core": "^7.23.2",
56     "@babel/parser": "^7.23.0",
57     "@babel/plugin-proposal-class-properties": "^7.18.6",
58     "@babel/plugin-proposal-class-static-block": "^7.21.0",
59     "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
60     "@babel/plugin-proposal-optional-chaining": "^7.21.0",
61     "@babel/plugin-proposal-private-methods": "^7.18.6",
62     "@babel/plugin-proposal-private-property-in-object": "^7.21.11",
63     "@babel/plugin-proposal-unicode-sets-regex": "^7.18.6",
64     "@babel/plugin-transform-class-properties": "^7.22.5",
65     "@babel/plugin-transform-class-static-block": "^7.22.11",
66     "@babel/plugin-transform-modules-commonjs": "^7.23.0",
67     "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11",
68     "@babel/plugin-transform-optional-chaining": "^7.23.0",
69     "@babel/plugin-transform-private-methods": "^7.22.5",
70     "@babel/plugin-transform-private-property-in-object": "^7.22.11",
71     "@babel/plugin-transform-unicode-sets-regex": "^7.22.5",
72     "@babel/preset-env": "^7.15.6",
73     "@babel/preset-react": "7.14.5",
74     "@babel/register": "^7.15.3",
75     "@rollup/plugin-commonjs": "^24.0.1",
76     "@rollup/plugin-node-resolve": "^15.0.1",
77     "babel-jest": "^23.0.0",
78     "babel-loader": "^8.2.5",
79     "babel-plugin-module-resolver": "^4.1.0",
80     "babel-plugin-transform-amd-to-commonjs": "1.4.0",
81     "enzyme": "^3.10.0",
82     "enzyme-adapter-react-16": "^1.14.0",
83     "enzyme-to-json": "3.3.5",
84     "jest": "^27.2.1",
85     "jest-environment-jsdom": "^27.2.0",
86     "jest-in-case": "^1.0.2",
87     "jest-junit": "^6.0.0",
88     "jest-localstorage-mock": "^2.4.17",
89     "jest-serializer-babel-ast": "^0.0.5",
90     "redux": "^4.0.5",
91     "redux-mock-store": "^1.5.4",
92     "rollup": "3.20.2",
93     "rollup-plugin-inject-process-env": "^1.3.1",
94     "rollup-plugin-node-polyfills": "^0.2.1",
95     "workerjs": "github:jasonLaster/workerjs#1944c8b753cc9e84b6ed0cb2fbcaa25600706446"
96   },
97   "resolutions": {
98     "//": "Fix workerjs babel core dependency until we figure out a good solution",
99     "workerjs/@babel/core": "^7.23.2",
100     "workerjs/@babel/register": "^7.15.3"
101   }