strong-tie/inbound-calls
0
1{2 "name": "real-require",3 "version": "0.2.0",4 "description": "Keep require and import consistent after bundling or transpiling",5 "author": "Paolo Insogna <shogun@cowtech.it>",6 "homepage": "https://github.com/pinojs/real-require",7 "contributors": [8 {9 "name": "Paolo Insogna",10 "url": "https://github.com/ShogunPanda"11 }12 ],13 "license": "MIT",14 "repository": {15 "type": "git",16 "url": "git+https://github.com/pinojs/real-require.git"17 },18 "bugs": {19 "url": "https://github.com/pinojs/real-require/issues"20 },21 "main": "src/index.js",22 "files": [23 "src"24 ],25 "scripts": {26 "format": "prettier -w src test",27 "lint": "eslint src test",28 "test": "c8 --reporter=text --reporter=html tap --reporter=spec --no-coverage test/*.test.js",29 "test:watch": "tap --watch --reporter=spec --no-browser --coverage-report=text --coverage-report=html test/*.test.js",30 "test:ci": "c8 --reporter=text --reporter=json --check-coverage --branches 90 --functions 90 --lines 90 --statements 90 tap --no-color --no-coverage test/*.test.js",31 "ci": "npm run lint && npm run test:ci",32 "prepublishOnly": "npm run ci",33 "postpublish": "git push origin && git push origin -f --tags"34 },35 "devDependencies": {36 "eslint": "^7.12.0",37 "eslint-config-standard": "^16.0.3",38 "eslint-plugin-import": "^2.25.2",39 "eslint-plugin-node": "^11.1.0",40 "eslint-plugin-promise": "^5.1.1",41 "eslint-plugin-standard": "^5.0.0",42 "c8": "^7.10.0",43 "prettier": "^2.4.1",44 "tap": "^16.0.0"45 },46 "engines": {47 "node": ">= 12.13.0"48 }49}50 