package.json (2285B)
1 { 2 "license": "MPL-2.0", 3 "repository": { 4 "url": "git://github.com/firefox-devtools/debugger.git", 5 "type": "git" 6 }, 7 "bugs": { 8 "url": "https://github.com/firefox-devtools/debugger/issues" 9 }, 10 "homepage": "https://github.com/firefox-devtools/debugger#readme", 11 "engineStrict": true, 12 "scripts": { 13 "license-check": "devtools-license-check", 14 "links": "ls -l node_modules/ | grep ^l || echo 'no linked packages'", 15 "test": "TZ=Africa/Nairobi jest", 16 "test-ci": "TZ=Africa/Nairobi jest --json", 17 "test:watch": "jest --watch", 18 "test:coverage": "yarn test --coverage", 19 "test:all": "yarn test" 20 }, 21 "dependencies": { 22 "acorn": "~8.8.2", 23 "source-map": "0.7.4", 24 "wasmparser": "^3.1.1" 25 }, 26 "private": true, 27 "workspaces": [ 28 "packages/*" 29 ], 30 "files": [ 31 "src", 32 "assets" 33 ], 34 "author": "Jason Laster <jlaster@mozilla.com>", 35 "devDependencies": { 36 "@babel/core": "^7.28.3", 37 "@babel/parser": "^7.28.3", 38 "@babel/types": "^7.28.2", 39 "@babel/plugin-syntax-import-attributes": "^7.27.1", 40 "@babel/plugin-transform-class-properties": "^7.27.1", 41 "@babel/plugin-transform-class-static-block": "^7.28.3", 42 "@babel/plugin-transform-explicit-resource-management": "^7.28.0", 43 "@babel/plugin-transform-modules-commonjs": "^7.27.1", 44 "@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1", 45 "@babel/plugin-transform-optional-chaining": "^7.27.1", 46 "@babel/plugin-transform-private-methods": "^7.27.1", 47 "@babel/plugin-transform-private-property-in-object": "^7.27.1", 48 "@babel/plugin-transform-unicode-sets-regex": "^7.27.1", 49 "@babel/preset-env": "^7.28.3", 50 "@babel/register": "^7.28.3", 51 "@rollup/plugin-commonjs": "^24.0.1", 52 "@rollup/plugin-node-resolve": "^15.0.1", 53 "babel-jest": "^29.7.0", 54 "babel-loader": "^8.2.5", 55 "babel-plugin-dynamic-import-node": "^2.3.3", 56 "babel-plugin-module-resolver": "^4.1.0", 57 "babel-plugin-transform-amd-to-commonjs": "1.6.0", 58 "jest": "^29.7.0", 59 "jest-environment-jsdom": "^29.7.0", 60 "jest-in-case": "^1.0.2", 61 "jest-localstorage-mock": "^2.4.17", 62 "prettier": "2.8.8", 63 "rollup": "3.20.2", 64 "rollup-plugin-inject-process-env": "^1.3.1", 65 "rollup-plugin-node-polyfills": "^0.2.1" 66 } 67 }