audion/package.json

89 строки
3.2 KiB
JSON

{
"name": "audion",
"private": true,
"version": "3.0.9",
"description": "A Chrome DevTools extension traces Web Audio API calls and visualizes in the DevTools.",
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChrome/audion.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GoogleChrome/audion/issues"
},
"homepage": "https://github.com/GoogleChrome/audion#readme",
"main": "index.js",
"engines": {
"node": "18"
},
"dependencies": {
"@pixi/unsafe-eval": "^7.2.4",
"dagre": "^0.8.5",
"pixi.js": "^7.2.4",
"rxjs": "^7.8.1",
"taffydb": "^2.7.3"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/preset-typescript": "^7.16.7",
"@pixi/jsdoc-template": "^2.6.0",
"@types/dagre": "^0.7.46",
"@types/graphlib": "^2.1.8",
"babel-jest": "^29.5.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.6.0",
"devtools-protocol": "^0.0.924232",
"eslint": "^8.40.0",
"eslint-config-google": "^0.14.0",
"file-loader": "^6.2.0",
"husky": ">=6",
"jest": "^27.0.6",
"jest-puppeteer": "^5.0.4",
"jsdoc": "^4.0.2",
"lint-staged": ">=10",
"mustache": "^4.2.0",
"pinst": ">=2",
"prettier": "^2.3.2",
"puppeteer": "^9.1.1",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.0",
"style-loader": "^3.2.1",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"yazl": "^2.5.1"
},
"scripts": {
"build:chrome-extension": "node src/build/make-chrome-extension.js",
"build:clean": "rimraf build",
"build:webpack": "webpack --mode production --config src/webpack.config.js",
"build": "npm run build:clean && npm run build:webpack && npm run build:chrome-extension",
"clean": "rimraf build docs src/coverage simulations/build",
"dev": "webpack --mode development --config src/webpack.config.js && npm run build:chrome-extension",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable",
"test:integration:build": "npm run test:integration:clean && npm run test:integration:webpack",
"test:integration:clean": "rimraf simulations/build",
"test:integration:webpack": "webpack --mode development --config simulations/webpack.config.js",
"test:integration:run": "JEST_PUPPETEER_CONFIG=test/.jest-puppeteer.config.json jest --config test/.jest.config.json",
"test:integration": "npm run build && npm run test:integration:build && npm run test:integration:run",
"test:jsdoc": "jsdoc -c .jsdoc.json",
"test:lint:eslint": "eslint src/**/*.js",
"test:lint:prettier": "prettier --check src/**/*.{js,ts}",
"test:lint": "npm run test:lint:eslint && npm run test:lint:prettier",
"test:unit": "jest --config src/.jest.config.json",
"test": "npm run test:lint && npm run test:jsdoc && npm run test:unit && npm run test:integration"
},
"lint-staged": {
"*.{js}": "eslint --cache --fix",
"*.{js,ts,json,css,md}": "prettier --write"
}
}