1{ 2 "name": "SmartPerf", 3 "version": "1.0.0", 4 "description": "Smart Perf", 5 "main": "index.js", 6 "scripts": { 7 "compile": "node ./build.js", 8 "test": "jest -u", 9 "test-c": "jest --coverage -u" 10 }, 11 "jest": { 12 "testEnvironment": "jsdom", 13 "collectCoverageFrom": [ 14 "<rootDir>/dist/**/*.js", 15 "!<rootDir>/dist/bin/*", 16 "!<rootDir>/dist/trace/database/pixi.js", 17 "!<rootDir>/dist/trace/database/sql-wasm.js", 18 "!<rootDir>/dist/trace/database/uuidv4.min.js", 19 "!<rootDir>/dist/trace/database/worker.sql-wasm.js", 20 "!<rootDir>/dist/trace/database/worker.sql-wasm-debug.js", 21 "!<rootDir>/dist/trace/database/trace_streamer_builtin.js", 22 "!<rootDir>/dist/trace/database/trace_streamer_sdk_builtin.js", 23 "!<rootDir>/dist/trace/database/trace_streamer_dubai_builtin.js" 24 ], 25 "globals": { 26 "useWb": true 27 }, 28 "setupFiles": [ 29 "jsdom-worker", 30 "jest-canvas-mock" 31 ], 32 "setupFilesAfterEnv": [ 33 "<rootDir>/jest.setup.js" 34 ] 35 }, 36 "repository": { 37 "type": "git", 38 "url": "" 39 }, 40 "author": "", 41 "license": "Apache License", 42 "devDependencies": { 43 "@babel/plugin-proposal-class-properties": "^7.16.7", 44 "@babel/plugin-proposal-decorators": "^7.17.2", 45 "@babel/preset-env": "*", 46 "@babel/preset-typescript": "*", 47 "@types/jest": "*", 48 "@types/node": "^17.0.10", 49 "jest": "*", 50 "jest-canvas-mock": "^2.3.1", 51 "typescript": "^4.2.3", 52 "jsdom-worker": "^0.2.1", 53 "jest-environment-jsdom": "^28.1.0", 54 "node-fetch": "^2.6.7", 55 "log4js": "^6.4.4", 56 "usb": "^2.4.2" 57 }, 58 "dependencies": {} 59} 60