mirror of
https://github.com/Feodor2/Mypal68.git
synced 2025-06-18 14:55:44 -04:00
172 lines
6.4 KiB
JSON
172 lines
6.4 KiB
JSON
{
|
|
"name": "debugger",
|
|
"version": "0.6.0",
|
|
"license": "MPL-2.0",
|
|
"repository": {
|
|
"url": "git://github.com/firefox-devtools/debugger.git",
|
|
"type": "git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/firefox-devtools/debugger/issues"
|
|
},
|
|
"homepage": "https://github.com/firefox-devtools/debugger#readme",
|
|
"engineStrict": true,
|
|
"scripts": {
|
|
"start": "node bin/dev-server",
|
|
"start-app": "TARGET=application node bin/dev-server",
|
|
"flow": "flow",
|
|
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
|
|
"prettier": "node bin/prettier.js",
|
|
"license-check": "devtools-license-check",
|
|
"links": "ls -l node_modules/ | grep ^l || echo 'no linked packages'",
|
|
"lint": "run-p lint:css lint:js lint:jsx-a11y lint:md",
|
|
"lint:css": "stylelint \"src/components/**/*.css\"",
|
|
"lint:js": "eslint *.js \"src/**/*.js\" \"packages/*/src/**/*.js\" --fix",
|
|
"lint:jsx-a11y": "eslint *.js \"src/**/*.js\" \"packages/*/src/**/*.js\" --plugin=jsx-a11y --config=.eslintrc.jsx-a11y",
|
|
"lint:md": "remark -u devtools-linters/markdown/preset -qf *.md src",
|
|
"mochi": "mochii --mc ./firefox --interactive --default-test-path devtools/client/debugger",
|
|
"mochid": "yarn mochi -- --jsdebugger --",
|
|
"mochir": "yarn mochi -- --repeat 10 --",
|
|
"mochih": "yarn mochi -- --headless --",
|
|
"mochici": "mochii --mc ./firefox --ci --default-test-path devtools/client/debugger --headless --",
|
|
"test": "TZ=Africa/Nairobi jest",
|
|
"test-ci": "TZ=Africa/Nairobi jest --json",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "yarn test --coverage",
|
|
"test:all": "yarn test; yarn lint; yarn flow",
|
|
"firefox": "start-firefox --start --location https://firefox-devtools.github.io/debugger-examples/",
|
|
"chrome": "start-chrome --location https://firefox-devtools.github.io/debugger-examples/",
|
|
"watch": "node bin/watch",
|
|
"copy": "node bin/copy --assets",
|
|
"flow-coverage": "flow-coverage-report --threshold 50 -i 'src/actions/*.js' -i 'src/reducers/*.js' -i 'src/utils/*.js' -i 'src/components/*.js' -i 'src/components/**/*.js' -t html -t text",
|
|
"flow-utils": "flow-coverage-report -i 'src/utils/*.js' -i 'src/utils/**/*.js' -t text",
|
|
"flow-redux": "flow-coverage-report -i 'src/reducers/*.js' -i 'src/actions/*.js' -t text",
|
|
"flow-react": "flow-coverage-report -i 'src/components/**/*.js' -t text",
|
|
"nom": "node bin/nom",
|
|
"diff": "node bin/diff",
|
|
"install": "prettier --write package.json"
|
|
},
|
|
"dependencies": {
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/parser": "^7.0.0",
|
|
"@babel/template": "^7.0.0",
|
|
"@babel/types": "^7.0.0",
|
|
"babel-plugin-transform-imports": "^1.5.0",
|
|
"codemirror": "^5.28.0",
|
|
"devtools-environment": "^0.0.6",
|
|
"devtools-launchpad": "^0.0.160",
|
|
"devtools-linters": "^0.0.4",
|
|
"devtools-reps": "0.23.0",
|
|
"devtools-source-map": "0.16.0",
|
|
"devtools-splitter": "^0.0.8",
|
|
"devtools-utils": "0.0.14",
|
|
"devtools-wasm-dwarf": "0.0.1",
|
|
"fuzzaldrin-plus": "^0.6.0",
|
|
"lodash": "^4.17.4",
|
|
"lodash-move": "^1.1.1",
|
|
"lodash.kebabcase": "^4.1.1",
|
|
"md5": "^2.2.1",
|
|
"parse-script-tags": "github:loganfsmyth/parse-script-tags#d771732ca47e1b3554fe67d609fd18cc785c5f26",
|
|
"pretty-fast": "^0.2.3",
|
|
"prop-types": "^15.6.0",
|
|
"react": "16.8.6",
|
|
"react-aria-components": "^0.0.4",
|
|
"react-dom": "16.8.6",
|
|
"react-redux": "^5.0.7",
|
|
"react-transition-group": "^2.2.1",
|
|
"reselect": "^4.0.0",
|
|
"svg-inline-react": "^3.0.0",
|
|
"wasmparser": "^0.10.0",
|
|
"whatwg-url": "^7.0.0"
|
|
},
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"files": [
|
|
"src",
|
|
"assets"
|
|
],
|
|
"greenkeeper": {
|
|
"ignore": [
|
|
"react",
|
|
"react-dom",
|
|
"react-redux",
|
|
"redux",
|
|
"codemirror"
|
|
]
|
|
},
|
|
"main": "src/main.js",
|
|
"author": "Jason Laster <jlaster@mozilla.com>",
|
|
"devDependencies": {
|
|
"@babel/plugin-proposal-class-properties": "^7.5.5",
|
|
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
|
|
"@babel/preset-env": "^7.5.5",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"@babel/register": "^7.0.0",
|
|
"@sucrase/webpack-object-rest-spread-plugin": "^1.0.0",
|
|
"babel-core": "^7.0.0-bridge.0",
|
|
"babel-eslint": "^11.0.0-beta.0",
|
|
"babel-jest": "^23.0.0",
|
|
"babel-loader": "^8.0.6",
|
|
"babel-plugin-module-resolver": "^3.2.0",
|
|
"chalk": "^2.1.0",
|
|
"copy-paste": "^1.3.0",
|
|
"copy-webpack-plugin": "^4.5.2",
|
|
"devtools-license-check": "^0.7.0",
|
|
"enzyme": "^3.10.0",
|
|
"enzyme-adapter-react-16": "^1.14.0",
|
|
"enzyme-to-json": "3.3.5",
|
|
"eslint": "^5.0.0",
|
|
"eslint-config-prettier": "4.2.0",
|
|
"eslint-plugin-babel": "^5.0.0",
|
|
"eslint-plugin-file-header": "0.0.1",
|
|
"eslint-plugin-flowtype": "^3.0.0",
|
|
"eslint-plugin-import": "^2.16.0",
|
|
"eslint-plugin-jest": "^21.15.1",
|
|
"eslint-plugin-jsx-a11y": "^6.1.2",
|
|
"eslint-plugin-mozilla": "1.2.1",
|
|
"eslint-plugin-prettier": "3.0.1",
|
|
"eslint-plugin-react": "^7.2.1",
|
|
"expect.js": "^0.3.1",
|
|
"flow-bin": "0.97.0",
|
|
"glob": "^7.0.3",
|
|
"husky": "^1.0.1",
|
|
"jest": "^23.0.0",
|
|
"jest-environment-jsdom": "^23.0.0",
|
|
"jest-in-case": "^1.0.2",
|
|
"jest-junit": "^6.0.0",
|
|
"jest-localstorage-mock": "^2.2.0",
|
|
"jest-serializer-babel-ast": "^0.0.5",
|
|
"lint-staged": "^8.0.0",
|
|
"mochii": "^0.0.32",
|
|
"mock-require": "^3.0.0",
|
|
"node-emoji": "^1.8.1",
|
|
"npm-run-all": "^4.0.2",
|
|
"prettier": "1.17.0",
|
|
"pretty-quick": "^1.4.1",
|
|
"remark-cli": "^6.0.0",
|
|
"remark-lint": "^6.0.1",
|
|
"remark-lint-list-item-bullet-indent": "^1.0.1",
|
|
"remark-lint-list-item-indent": "^1.0.1",
|
|
"remark-lint-no-shortcut-reference-image": "^1.0.1",
|
|
"remark-lint-no-shortcut-reference-link": "^1.0.2",
|
|
"remark-lint-no-table-indentation": "^1.0.0",
|
|
"remark-lint-no-unused-definitions": "^1.0.1",
|
|
"remark-lint-ordered-list-marker-style": "^1.0.1",
|
|
"remark-lint-table-cell-padding": "^1.0.0",
|
|
"remark-lint-table-pipes": "^1.0.0",
|
|
"remark-preset-lint-recommended": "^3.0.0",
|
|
"remark-validate-links": "^8.0.0",
|
|
"rimraf": "^2.6.1",
|
|
"single-line-log": "^1.1.2",
|
|
"stylelint": "^9.0.0",
|
|
"webpack": "^3.5.5",
|
|
"webpack-visualizer-plugin": "^0.1.11",
|
|
"workerjs": "github:jasonLaster/workerjs#1944c8b753cc9e84b6ed0cb2fbcaa25600706446"
|
|
}
|
|
}
|