You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					89 lines
				
				2.3 KiB
			
		
		
			
		
	
	
					89 lines
				
				2.3 KiB
			| 
											3 years ago
										 | { | ||
|  |   "name": "@rollup/plugin-node-resolve", | ||
|  |   "version": "13.3.0", | ||
|  |   "publishConfig": { | ||
|  |     "access": "public" | ||
|  |   }, | ||
|  |   "description": "Locate and bundle third-party dependencies in node_modules", | ||
|  |   "license": "MIT", | ||
|  |   "repository": { | ||
|  |     "url": "rollup/plugins", | ||
|  |     "directory": "packages/node-resolve" | ||
|  |   }, | ||
|  |   "author": "Rich Harris <richard.a.harris@gmail.com>", | ||
|  |   "homepage": "https://github.com/rollup/plugins/tree/master/packages/node-resolve/#readme", | ||
|  |   "bugs": "https://github.com/rollup/plugins/issues", | ||
|  |   "main": "./dist/cjs/index.js", | ||
|  |   "module": "./dist/es/index.js", | ||
|  |   "type": "commonjs", | ||
|  |   "exports": { | ||
|  |     "require": "./dist/cjs/index.js", | ||
|  |     "import": "./dist/es/index.js" | ||
|  |   }, | ||
|  |   "engines": { | ||
|  |     "node": ">= 10.0.0" | ||
|  |   }, | ||
|  |   "scripts": { | ||
|  |     "build": "rollup -c", | ||
|  |     "ci:coverage": "nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov", | ||
|  |     "ci:lint": "pnpm build && pnpm lint", | ||
|  |     "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", | ||
|  |     "ci:test": "pnpm test -- --verbose && pnpm test:ts", | ||
|  |     "prebuild": "del-cli dist", | ||
|  |     "prepare": "if [ ! -d 'dist' ]; then pnpm build; fi", | ||
|  |     "prepublishOnly": "pnpm build", | ||
|  |     "prerelease": "pnpm build", | ||
|  |     "pretest": "pnpm build", | ||
|  |     "release": "pnpm plugin:release --workspace-root -- --pkg $npm_package_name", | ||
|  |     "test": "ava && pnpm test:ts", | ||
|  |     "test:ts": "tsc types/index.d.ts test/types.ts --noEmit" | ||
|  |   }, | ||
|  |   "files": [ | ||
|  |     "dist", | ||
|  |     "types", | ||
|  |     "README.md", | ||
|  |     "LICENSE" | ||
|  |   ], | ||
|  |   "keywords": [ | ||
|  |     "rollup", | ||
|  |     "plugin", | ||
|  |     "es2015", | ||
|  |     "npm", | ||
|  |     "modules" | ||
|  |   ], | ||
|  |   "peerDependencies": { | ||
|  |     "rollup": "^2.42.0" | ||
|  |   }, | ||
|  |   "dependencies": { | ||
|  |     "@rollup/pluginutils": "^3.1.0", | ||
|  |     "@types/resolve": "1.17.1", | ||
|  |     "deepmerge": "^4.2.2", | ||
|  |     "is-builtin-module": "^3.1.0", | ||
|  |     "is-module": "^1.0.0", | ||
|  |     "resolve": "^1.19.0" | ||
|  |   }, | ||
|  |   "devDependencies": { | ||
|  |     "@babel/core": "^7.10.5", | ||
|  |     "@babel/plugin-transform-typescript": "^7.10.5", | ||
|  |     "@rollup/plugin-babel": "^5.1.0", | ||
|  |     "@rollup/plugin-commonjs": "^16.0.0", | ||
|  |     "@rollup/plugin-json": "^4.1.0", | ||
|  |     "es5-ext": "^0.10.53", | ||
|  |     "rollup": "^2.67.3", | ||
|  |     "source-map": "^0.7.3", | ||
|  |     "string-capitalize": "^1.0.1" | ||
|  |   }, | ||
|  |   "types": "types/index.d.ts", | ||
|  |   "ava": { | ||
|  |     "babel": { | ||
|  |       "compileEnhancements": false | ||
|  |     }, | ||
|  |     "files": [ | ||
|  |       "!**/fixtures/**", | ||
|  |       "!**/helpers/**", | ||
|  |       "!**/recipes/**", | ||
|  |       "!**/types.ts" | ||
|  |     ] | ||
|  |   } | ||
|  | } |