1{ 2 "name": "combo", 3 "version": "1.0.0", 4 "description": "combo", 5 "types": "./resources/library/combo/dist/types.d.ts", 6 "private": true, 7 "scripts": { 8 "watch": "parcel watch", 9 "build": "parcel build --target combo", 10 "test": "jest" 11 }, 12 "devDependencies": { 13 "@babel/core": "^7.16.0", 14 "@babel/preset-env": "^7.16.0", 15 "@popperjs/core": "^2.10.2", 16 "@testing-library/dom": "^8.11.1", 17 "@testing-library/jest-dom": "^5.15.0", 18 "@testing-library/user-event": "^13.5.0", 19 "@types/bootstrap": "^5.1.6", 20 "babel-jest": "^27.3.1", 21 "bootstrap": "^5.1.3", 22 "jest": "^27.3.1", 23 "parcel": "^2.0.0" 24 }, 25 "alias": { 26 "bootstrap": { 27 "global": "bootstrap" 28 } 29 }, 30 "jest": { 31 "testEnvironment": "jsdom", 32 "testEnvironmentOptions": { 33 "userAgent": "Agent/007" 34 }, 35 "testMatch": [ 36 "**/resources/library/combo/__tests__/*.[jt]s?(x)" 37 ], 38 "setupFilesAfterEnv": [ 39 "./resources/library/combo/jest/JestExtend.js" 40 ] 41 }, 42 "browserslist": "> 0.5%, last 2 versions, not dead", 43 "combo": "./resources/library/combo/dist/combo.min.js", 44 "targets": { 45 "combo": { 46 "source": "./resources/library/combo/combo.js", 47 "context": "browser", 48 "outputFormat": "global", 49 "includeNodeModules": true, 50 "isLibrary": false 51 } 52 }, 53 "dependencies": { 54 "nanoid": "^3.1.30" 55 }, 56 "peerDependencies": { 57 "@popperjs/core": "^2.10.2", 58 "bootstrap": "^5.1.3" 59 } 60} 61